changed the resurce enumeration

This commit is contained in:
nofreude 2002-04-25 13:13:49 +00:00
parent 04812d3f7a
commit 1921b30246
1 changed files with 23 additions and 23 deletions

View File

@ -12,29 +12,29 @@
/* enumerated definition of the different res-types */ /* enumerated definition of the different res-types */
#define SCXT_Unknown -1 #define SCXT_Unknown 0
#define SCXT_String -2 #define SCXT_String 1
#define SCXT_Callbacklist -3 #define SCXT_Callbacklist 2
#define SCXT_Float -4 #define SCXT_Float 3
#define SCXT_Backing_Store -5 #define SCXT_Backing_Store 4
#define SCXT_Dimension -6 #define SCXT_Dimension 5
#define SCXT_Translations -7 #define SCXT_Translations 6
#define SCXT_Position -8 #define SCXT_Position 7
#define SCXT_Bitmap -9 #define SCXT_Bitmap 8
#define SCXT_Cardinal -10 #define SCXT_Cardinal 9
#define SCXT_Accelerators -11 #define SCXT_Accelerators 10
#define SCXT_Boolean -12 #define SCXT_Boolean 11
#define SCXT_Colormap -13 #define SCXT_Colormap 12
#define SCXT_Cursor -14 #define SCXT_Cursor 13
#define SCXT_Display -15 #define SCXT_Display 14
#define SCXT_Font -16 #define SCXT_Font 15
#define SCXT_Gc -17 #define SCXT_Gc 16
#define SCXT_Fixnum -18 #define SCXT_Fixnum 17
#define SCXT_Pixel -19 #define SCXT_Pixel 18
#define SCXT_Pixmap -20 #define SCXT_Pixmap 19
#define SCXT_Character -21 #define SCXT_Character 20
#define SCXT_Widget -22 #define SCXT_Widget 21
#define SCXT_Window -23 #define SCXT_Window 22
/* scxt_I_Resource_To_Scheme_Type: */ /* scxt_I_Resource_To_Scheme_Type: */