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.
24 lines
698 B
24 lines
698 B
//***************************************************************************
|
|
|
|
//
|
|
|
|
// WBEMSEC.H
|
|
|
|
//
|
|
|
|
// Purpose: Provides prototypes for some security helper functions.
|
|
|
|
//
|
|
|
|
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
//***************************************************************************
|
|
|
|
#ifndef _WBEMSEC_H_
|
|
#define _WBEMSEC_H_
|
|
|
|
HRESULT InitializeSecurity(DWORD dwAuthLevel, DWORD dwImpLevel);
|
|
SCODE GetAuthImp(IUnknown * pFrom, DWORD * pdwAuthLevel, DWORD * pdwImpLevel);
|
|
HRESULT SetInterfaceSecurity(IUnknown * pInterface, LPWSTR pDomain, LPWSTR pUser, LPWSTR pPassword, DWORD dwAuthLevel, DWORD dwImpLevel);
|
|
|
|
#endif // _WBEMSEC_H_
|