WindowsXP-SP1/termsrv/admtools/remotepage/registry.h
2020-09-30 16:53:49 +02:00

12 lines
352 B
C

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