Source code of Windows XP (NT5)
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.

44 lines
564 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. stubs.c
  5. Abstract:
  6. Author:
  7. 16-Jan-1997 AlanWar
  8. Revision History:
  9. --*/
  10. #include <windows.h>
  11. #include <shellapi.h>
  12. #include <stdio.h>
  13. #include <fcntl.h>
  14. #include <ctype.h>
  15. #include <bmfmisc.h>
  16. #include <wbemcli.h>
  17. HRESULT CreateBMOFViaDLL(
  18. WCHAR *MofFileW,
  19. WCHAR *BmfFileW,
  20. WCHAR *NameSpace,
  21. LONG OptionFlags,
  22. LONG ClassFlags,
  23. LONG InstanceFlags,
  24. WBEM_COMPILE_STATUS_INFO *info
  25. )
  26. {
  27. //
  28. // Stub implementation - not needed in this app
  29. //
  30. return(E_NOTIMPL);
  31. }