home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / win3 / patches / symantec / rtlinc.exe / CLIB.H < prev    next >
C/C++ Source or Header  |  1993-05-19  |  268b  |  18 lines

  1. #ifndef __CLIB_H
  2. #define __CLIB_H 1
  3.  
  4. #ifdef __STDC__
  5. #define __CDECL
  6. #define __STDCALL
  7. #else
  8. #define __CDECL __cdecl
  9. #define __STDCALL __stdcall
  10. #endif
  11.  
  12. #if __OS2__ && __INTSIZE == 4
  13. #define __CLIB    __STDCALL
  14. #else
  15. #define __CLIB    __CDECL
  16. #endif
  17. #endif
  18.