home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sffdk10b.zip / sample / rexxcall / oldlib / oldlib.h < prev    next >
C/C++ Source or Header  |  2001-03-05  |  626b  |  28 lines

  1. /*
  2. ** Module   :OLDLIB.H
  3. ** Abstract :Internal definitions for oldlib library
  4. **
  5. ** Copyright (C) Link Guard Solutions
  6. ** For conditions of distribution and use, see license in license.txt
  7. **
  8. ** Log: Fri  23/02/2001 Created
  9. **
  10. */
  11. #ifndef __OLDLIB_H
  12. #define __OLDLIB_H
  13.  
  14. #include <sftypes.h>
  15.  
  16. dword _oldlib_plidx;
  17.  
  18. #ifndef APIENTRY
  19. #define APIENTRY    _System
  20. #endif
  21.  
  22. void APIENTRY Init11(char *name, dword *plidx);
  23. void APIENTRY Config11(dword plidx, char *var, char *val);
  24. dword APIENTRY Write11(dword plidx, Bool source, dword proto, char *packet, dword psize, dword idx);
  25.  
  26. #endif  /*__OLDLIB_H*/
  27.  
  28.