SECURITY.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

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