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.
|
|
/*++
Copyright (C) 1998-2001 Microsoft Corporation
Module Name:
DLLCALLS.H
Abstract:
This file defines the entry points for calling this as a dll rather than a com object.
History:
3/20/00 a-davj Created
--*/
#ifndef __DLLCALLS__H_
#define __DLLCALLS__H_
HRESULT APIENTRY CompileFileViaDLL( /* [in] */ LPWSTR FileName, /* [in] */ LPWSTR ServerAndNamespace, /* [in] */ LPWSTR User, /* [in] */ LPWSTR Authority, /* [in] */ LPWSTR Password, /* [in] */ LONG lOptionFlags, /* [in] */ LONG lClassFlags, /* [in] */ LONG lInstanceFlags, /* [out][in] */ WBEM_COMPILE_STATUS_INFO __RPC_FAR *pInfo);
HRESULT APIENTRY CreateBMOFViaDLL( /* [in] */ LPWSTR TextFileName, /* [in] */ LPWSTR BMOFFileName, /* [in] */ LPWSTR ServerAndNamespace, /* [in] */ LONG lOptionFlags, /* [in] */ LONG lClassFlags, /* [in] */ LONG lInstanceFlags, /* [out][in] */ WBEM_COMPILE_STATUS_INFO __RPC_FAR *pInfo);
#endif
|