Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenregsvr.c
Go to the documentation of this file.
00001 /* 00002 * 00003 * PROJECT: fontext.dll 00004 * FILE: dll/shellext/fontext/regsvr.c 00005 * PURPOSE: fontext.dll 00006 * PROGRAMMER: Dmitry Chapyshev (dmitry@reactos.org) 00007 * UPDATE HISTORY: 00008 * 10-06-2008 Created 00009 */ 00010 00011 #include "fontext.h" 00012 00013 static HRESULT 00014 REGSVR_RegisterServer() 00015 { 00016 return S_OK; 00017 } 00018 00019 static HRESULT 00020 REGSVR_UnregisterServer() 00021 { 00022 return S_OK; 00023 } 00024 00025 HRESULT WINAPI 00026 DllRegisterServer(VOID) 00027 { 00028 return REGSVR_RegisterServer(); 00029 } 00030 00031 HRESULT WINAPI 00032 DllUnregisterServer(VOID) 00033 { 00034 return REGSVR_UnregisterServer(); 00035 } Generated on Sat May 26 2012 04:20:04 for ReactOS by
1.7.6.1
|