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
25 lines
521 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// File: server.cpp
|
|
//
|
|
// Contents: COM server functionality.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
#include "windows.h"
|
|
|
|
// DLL part of the Object
|
|
//
|
|
STDAPI_(BOOL) DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID pvReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
STDAPI DllRegisterServer(void)
|
|
{
|
|
return S_OK;
|
|
}
|
|
|
|
STDAPI DllUnregisterServer(void)
|
|
{
|
|
return S_OK;
|
|
}
|