Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
971 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. secpriv.y
  5. Abstract:
  6. This module contains private function prototypes exported by the
  7. ADMPROX proxy DLL for the exclusive use of the COADMIN server
  8. implementation.
  9. Author:
  10. Keith Moore (keithmo) 25-Feb-1997
  11. Revision History:
  12. --*/
  13. #ifndef _SECPRIV_H_
  14. #define _SECPRIV_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif // __cplusplus
  18. //
  19. // Function to release the security context for a given object. The
  20. // server is expected to call this routine from within the object's
  21. // destructor.
  22. //
  23. VOID
  24. WINAPI
  25. ReleaseObjectSecurityContextA(
  26. IUnknown * Object
  27. );
  28. VOID
  29. WINAPI
  30. ReleaseObjectSecurityContextW(
  31. IUnknown * Object
  32. );
  33. typedef
  34. VOID
  35. (WINAPI * LPFN_RELEASE_OBJECT_SECURITY_CONTEXT)(
  36. IUnknown * Object
  37. );
  38. #ifdef __cplusplus
  39. } // extern "C"
  40. #endif // __cplusplus
  41. #endif // _SECPRIV_H_