home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / spxex1.exe / DOS16.H next >
C/C++ Source or Header  |  1994-11-16  |  760b  |  31 lines

  1. #ifdef CSET2
  2. #ifndef APIENTRY16
  3. #define APIENTRY16  _Far16 _Pascal
  4. #endif
  5.  
  6. int    APIENTRY16   Dos16SemSet(void FAR * _Seg16);
  7. int    APIENTRY16   Dos16SemWait( void FAR * _Seg16 hsem, int );
  8. int        APIENTRY16    Dos16SemClear(void FAR * _Seg16);
  9. #endif
  10.  
  11. #ifdef WATC
  12. #ifndef APIENTRY16
  13. #define APIENTRY16  __far16 __pascal
  14. #endif
  15.  
  16. int    APIENTRY16   Dos16SemSet(void __far16 *);
  17. int    APIENTRY16   Dos16SemWait(void __far16 *, long);
  18. int    APIENTRY16   Dos16SemClear(void __far16 *);
  19. #endif
  20.  
  21. #ifdef BCPP
  22. #ifndef APIENTRY16
  23. #define APIENTRY16  __far16 __pascal
  24. #endif
  25.  
  26. int    APIENTRY16   Dos16SemSet(void __far16 *);
  27. int    APIENTRY16   Dos16SemWait(void __far16 *, long);
  28. int    APIENTRY16   Dos16SemClear(void __far16 *);
  29. #endif
  30.  
  31.