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.

33 lines
781 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 2000
  4. *
  5. * TITLE: MODULE.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: ShaunIv
  10. *
  11. * DATE: 3/30/2000
  12. *
  13. * DESCRIPTION: Main module definitions
  14. *
  15. *******************************************************************************/
  16. #ifndef _MAIN_H_INCLUDED
  17. #define _MAIN_H_INCLUDED
  18. //
  19. // DLL instance
  20. //
  21. extern HINSTANCE g_hInstance;
  22. void DllAddRef();
  23. void DllRelease();
  24. extern "C" STDMETHODIMP DllRegisterServer(void);
  25. extern "C" STDMETHODIMP DllUnregisterServer(void);
  26. extern "C" STDMETHODIMP DllCanUnloadNow(void);
  27. extern "C" STDAPI DllGetClassObject( const CLSID &clsid, const IID &iid, void **ppvObject );
  28. #endif // _MAIN_H_INCLUDED