mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 14:44:19 +00:00
35 lines
539 B
C
35 lines
539 B
C
/*
|
|
*
|
|
* PROJECT: fontext.dll
|
|
* FILE: dll/shellext/fontext/regsvr.c
|
|
* PURPOSE: fontext.dll
|
|
* PROGRAMMER: Dmitry Chapyshev (dmitry@reactos.org)
|
|
* UPDATE HISTORY:
|
|
* 10-06-2008 Created
|
|
*/
|
|
|
|
#include "fontext.h"
|
|
|
|
static HRESULT
|
|
REGSVR_RegisterServer()
|
|
{
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT
|
|
REGSVR_UnregisterServer()
|
|
{
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT WINAPI
|
|
DllRegisterServer(VOID)
|
|
{
|
|
return REGSVR_RegisterServer();
|
|
}
|
|
|
|
HRESULT WINAPI
|
|
DllUnregisterServer(VOID)
|
|
{
|
|
return REGSVR_UnregisterServer();
|
|
}
|