home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / bcfamily / inc / _api.h next >
Encoding:
C/C++ Source or Header  |  1992-12-19  |  855 b   |  33 lines

  1. /*
  2.  *      **************************************************************
  3.  *       JdeBP C++ Library Routines      General Public Licence v1.00
  4.  *          Copyright (c) 1991,1992  Jonathan de Boyne Pollard
  5.  *      **************************************************************
  6.  *
  7.  * API TYPES for OS/2 and WINDOWS CALLS
  8.  *
  9.  */
  10.  
  11. #if !defined(___API_H_INCLUDED)
  12.  
  13. #define _APICALL    far pascal
  14.  
  15. typedef unsigned long   NETLONG;    // Network byte order
  16. typedef unsigned short  NETSHORT;   // Network byte order
  17.  
  18. typedef unsigned char   BYTE;
  19. typedef unsigned short  WORD;
  20. typedef unsigned long   DWORD;
  21.  
  22. typedef unsigned short  PARA;
  23.  
  24. typedef signed long LONG;
  25.  
  26. typedef unsigned short  USHORT ;
  27. typedef unsigned long   ULONG ;
  28. typedef unsigned int    UINT ;
  29. typedef unsigned char   UCHAR ;
  30.  
  31. #define ___API_H_INCLUDED
  32. #endif
  33.