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.

43 lines
1.1 KiB

  1. /*++
  2. Copyright (C) 1998-2001 Microsoft Corporation
  3. Module Name:
  4. DLLCALLS.H
  5. Abstract:
  6. This file defines the entry points for calling this as a dll rather than a com object.
  7. History:
  8. 3/20/00 a-davj Created
  9. --*/
  10. #ifndef __DLLCALLS__H_
  11. #define __DLLCALLS__H_
  12. HRESULT APIENTRY CompileFileViaDLL(
  13. /* [in] */ LPWSTR FileName,
  14. /* [in] */ LPWSTR ServerAndNamespace,
  15. /* [in] */ LPWSTR User,
  16. /* [in] */ LPWSTR Authority,
  17. /* [in] */ LPWSTR Password,
  18. /* [in] */ LONG lOptionFlags,
  19. /* [in] */ LONG lClassFlags,
  20. /* [in] */ LONG lInstanceFlags,
  21. /* [out][in] */ WBEM_COMPILE_STATUS_INFO __RPC_FAR *pInfo);
  22. HRESULT APIENTRY CreateBMOFViaDLL(
  23. /* [in] */ LPWSTR TextFileName,
  24. /* [in] */ LPWSTR BMOFFileName,
  25. /* [in] */ LPWSTR ServerAndNamespace,
  26. /* [in] */ LONG lOptionFlags,
  27. /* [in] */ LONG lClassFlags,
  28. /* [in] */ LONG lInstanceFlags,
  29. /* [out][in] */ WBEM_COMPILE_STATUS_INFO __RPC_FAR *pInfo);
  30. #endif