Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.         some used types
  3. */
  4. #define NULL                            (void*)0
  5.  
  6. typedef unsigned int                            DWORD;
  7. typedef unsigned char                   BYTE;
  8. typedef unsigned short int                      WORD;
  9. typedef unsigned int                            size_t;
  10.  
  11.  
  12. //#define       stdcall __attribute__((stdcall))
  13. //#define       cdecl           __attribute__((cdecl))
  14.  
  15. //for win compilers
  16. #define stdcall __stdcall
  17. #define cdecl           __cdecl
  18.