home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / wbemsec.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  688 b   |  21 lines

  1. //***************************************************************************
  2. //
  3. //  WBEMSEC.H
  4. //
  5. //  Purpose: Provides prototypes for some security helper functions.
  6. //
  7. //  Copyright (c)1998 Microsoft Corporation, All Rights Reserved
  8. //
  9. //***************************************************************************
  10.  
  11. #ifndef _WBEMSEC_H_
  12. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  13. #define _WBEMSEC_H_
  14.  
  15. HRESULT InitializeSecurity(BOOL bAuthenticate);
  16. HRESULT SetInterfaceSecurity(IUnknown * pInterface, LPWSTR pDomain, LPWSTR pUser, LPWSTR pPassword,bool bAuthenticate);
  17. bool IsAuthenticated(IUnknown * pFrom);
  18.  
  19. #pragma option pop /*P_O_Pop*/
  20. #endif // _WBEMSEC_H_
  21.