windows-nt/Source/XPSP1/NT/termsrv/admtools/remotepage/registry.h
2020-09-26 16:20:57 +08:00

12 lines
341 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();