tcursor.h - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tcursor.h (371B)
       ---
            1 #ifndef _CURSOR_H_
            2 #define _CURSOR_H_ 1
            3 #if defined(__cplusplus)
            4 extern "C" { 
            5 #endif
            6 
            7 typedef struct Cursor Cursor;
            8 struct        Cursor
            9 {
           10         Point        offset;
           11         uchar        clr[2*16];
           12         uchar        set[2*16];
           13 };
           14 
           15 typedef struct Cursor2 Cursor2;
           16 struct        Cursor2
           17 {
           18         Point        offset;
           19         uchar        clr[4*32];
           20         uchar        set[4*32];
           21 };
           22 
           23 void        scalecursor(Cursor2*, Cursor*);
           24 
           25 #if defined(__cplusplus)
           26 }
           27 #endif
           28 #endif