home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Business Development Kit / PRODUCT_CD.iso / sqlsvr / ptk / mips / srv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-12  |  1.1 KB  |  51 lines

  1. //
  2. // Open Data Services header file
  3. //
  4. // Copyright (c) 1989, 1990, 1991 by Microsoft Corp.
  5. //
  6.  
  7. // BUGBUG: NT v258 bug. Have to define DEVL in order to make critical
  8. // sections work properly.
  9.  
  10. #define  DEVL  1
  11.  
  12. #include "windows.h"
  13.  
  14. // Use same packing pragma as SQLServer. Otherwise it causes problems
  15. // when these are files included mixed with SQLServer files.
  16. #if !defined( _MSSQLRISC_)
  17. #pragma pack(2)
  18. #endif
  19.  
  20. //  Include miscellaneous Open Data Services definitions
  21. //
  22. #include    <srvmisc.h>
  23.  
  24. //  Include DBLIB definitions (it checks to see if they have already
  25. //  been defined)
  26. //
  27. #include    <srvdbtyp.h>
  28.  
  29. //  Include Open Data Services structure definitions
  30. //
  31. #include    <srvstruc.h>
  32.  
  33. //  Include Open Data Services token definitions
  34. //
  35. #include    <srvtok.h>
  36.  
  37. //  Include Open Data Services constant definitions
  38. //
  39. #include    <srvconst.h>
  40.  
  41. //  Include Open Data Services datatype definitions
  42. //
  43. #include    <srvtypes.h>
  44.  
  45. //  Include Open Data Services MACRO definitions and function prototypes
  46. //
  47. #include    <srvapi.h>
  48. #if !defined( _MSSQLRISC_)
  49. #pragma pack()
  50. #endif
  51.