home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / winnt / sockauth / security.h < prev    next >
Text File  |  1997-10-08  |  667b  |  40 lines

  1. /*++
  2.  
  3. Copyright 1996-1997 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     security.h
  8.  
  9. Abstract:
  10.  
  11.     Functions to handle communication with the security package
  12.  
  13. Revision History:
  14.  
  15. --*/
  16.  
  17. BOOL InitPackage (DWORD *pcbMaxMessage);
  18. BOOL TermPackage ();
  19. BOOL InitSession (DWORD dwKey);
  20. BOOL TermSession (DWORD dwKey);
  21. BOOL GenClientContext (
  22.             DWORD dwKey,
  23.             BYTE *pIn,
  24.             DWORD cbIn,
  25.             BYTE *pOut,
  26.             DWORD *pcbOut,
  27.             BOOL *pfDone
  28.             );
  29. BOOL GenServerContext (
  30.             DWORD dwKey,
  31.             BYTE *pIn,
  32.             DWORD cbIn,
  33.             BYTE *pOut,
  34.             DWORD *pcbOut,
  35.             BOOL *pfDone
  36.             );
  37. BOOL ImpersonateContext (DWORD dwKey);
  38. BOOL RevertContext (DWORD dwKey);
  39.  
  40.