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.

11 lines
352 B

  1. #pragma once
  2. // This function will register a component in the Registry.
  3. // The component calls this function from its DllRegisterServer function.
  4. HRESULT RegisterServer(HMODULE hModule);
  5. // This function will unregister a component. Components
  6. // call this function from their DllUnregisterServer function.
  7. HRESULT UnregisterServer();