home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / smssecur.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  2KB  |  96 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2. //+-----------------------------------------------------------------------
  3. //
  4. // Microsoft Windows
  5. //
  6. // Copyright (c) Microsoft Corporation 1991 - 1992
  7. //
  8. // File:        Security.h
  9. //
  10. // Contents:    Toplevel include file for security aware components
  11. //
  12. //
  13. // History:     06 Aug 92   RichardW    Created
  14. //              23 Sep 92   PeterWi     Add security object include files
  15. //
  16. //------------------------------------------------------------------------
  17.  
  18.  
  19. // This file will go out and pull in all the header files that you need,
  20. // based on defines that you issue.  The following macros are used.
  21.  
  22. // NOTE:  Update this section if you add new files:
  23. //
  24. // SECURITY_KERNEL      Use the kernel interface, not the usermode
  25. // SECURITY_PACKAGE     Include defines necessary for security packages
  26. // SECURITY_KERBEROS    Include everything needed to talk to the kerberos pkg.
  27. // SECURITY_NTLM        Include everything to talk to ntlm package.
  28. // SECURITY_OBJECTS     Include all Security Admin Object definitions.
  29.  
  30. //
  31. // Each of the files included here are surrounded by guards, so you don't
  32. // need to worry about including this file multiple times with different
  33. // flags defined
  34. //
  35.  
  36. #ifdef __cplusplus
  37. extern "C"
  38. {
  39. #endif
  40.  
  41. #ifndef SSPI_PROXY_CLASS
  42. #define SSPI_PROXY_CLASS    PROXY_CLASS
  43. #endif
  44.  
  45. #include <sspi.h>
  46.  
  47. #if defined(SECURITY_WIN32) || defined(SECURITY_KERNEL)
  48. #include <secext.h>
  49. #endif
  50.  
  51. //
  52. // Include the error codes:
  53. //
  54.  
  55. #if ISSP_LEVEL == 32
  56. #include <issperr.h>
  57. #endif
  58.  
  59. #if ISSP_LEVEL == 16
  60. #include <issper16.h>
  61. #endif
  62.  
  63.  
  64.  
  65. // Include security package headers:
  66.  
  67. #ifdef SECURITY_PACKAGE
  68.  
  69. #include <secpkg.h>
  70.  
  71. #endif  // SECURITY_PACKAGE
  72.  
  73.  
  74. #ifdef SECURITY_KERBEROS
  75.  
  76. #include <kerbcon.h>
  77. #include <kerberos.h>
  78.  
  79. #endif
  80.  
  81. #ifdef SECURITY_NTLM
  82.  
  83. #include <ntlmsp.h>
  84.  
  85. #endif // SECURITY_NTLM
  86.  
  87.  
  88. // Include security object definitions
  89.  
  90.  
  91. #ifdef __cplusplus
  92. }
  93. #endif
  94.  
  95. #pragma option pop /*P_O_Pop*/
  96.