home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / Emulation_Include_Files / security.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.4 KB  |  73 lines

  1. /*++
  2.  
  3. Copyright (c) 1992-1998 Microsoft Corporation
  4.  
  5. Module Name: security.h
  6.  
  7. Purpose: Top-level include file for security aware components.
  8.  
  9. --*/
  10.  
  11. // This file will go out and pull in all the header files that you need,
  12. // based on defines that you issue.  The following macros are used.
  13.  
  14. // NOTE:  Update this section if you add new files:
  15. //
  16. // SECURITY_KERNEL      Use the kernel interface, not the usermode
  17. // SECURITY_PACKAGE     Include defines necessary for security packages
  18. // SECURITY_KERBEROS    Include everything needed to talk to the kerberos pkg.
  19. // SECURITY_NTLM        Include everything to talk to ntlm package.
  20. // SECURITY_OBJECTS     Include all Security Admin Object definitions.
  21.  
  22. //
  23. // Each of the files included here are surrounded by guards, so you don't
  24. // need to worry about including this file multiple times with different
  25. // flags defined
  26. //
  27.  
  28. #ifdef __cplusplus
  29. extern "C"
  30. {
  31. #endif
  32.  
  33. #ifndef SSPI_PROXY_CLASS
  34. #define SSPI_PROXY_CLASS    PROXY_CLASS
  35. #endif
  36.  
  37. #include <windows.h>
  38.  
  39. #include <sspi.h>
  40.  
  41. #include <secext.h>
  42.  
  43. //
  44. // Include the error codes:
  45. //
  46.  
  47. #include <issperr.h>
  48.  
  49.  
  50. // Include security package headers:
  51.  
  52. #ifdef SECURITY_PACKAGE
  53.  
  54. #include <secpkg.h>
  55.  
  56. #endif  // SECURITY_PACKAGE
  57.  
  58.  
  59. #ifdef SECURITY_NTLM
  60.  
  61. // #include <ntlmsp.h>
  62.  
  63. #endif // SECURITY_NTLM
  64.  
  65.  
  66. // Include security object definitions
  67.  
  68.  
  69. #ifdef __cplusplus
  70. }
  71. #endif
  72.  
  73.