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.

25 lines
521 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // File: server.cpp
  4. //
  5. // Contents: COM server functionality.
  6. //
  7. //----------------------------------------------------------------------------
  8. #include "windows.h"
  9. // DLL part of the Object
  10. //
  11. STDAPI_(BOOL) DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID pvReserved)
  12. {
  13. return TRUE;
  14. }
  15. STDAPI DllRegisterServer(void)
  16. {
  17. return S_OK;
  18. }
  19. STDAPI DllUnregisterServer(void)
  20. {
  21. return S_OK;
  22. }