Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencomcat_main.c
Go to the documentation of this file.
00001 /* 00002 * exported dll functions for comcat.dll 00003 * 00004 * Copyright (C) 2002-2003 John K. Hohm 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #include <stdarg.h> 00022 00023 #define COBJMACROS 00024 00025 #include "windef.h" 00026 #include "winbase.h" 00027 #include "winuser.h" 00028 #include "winreg.h" 00029 #include "winerror.h" 00030 #include "ole2.h" 00031 00032 /*********************************************************************** 00033 * DllCanUnloadNow (COMCAT.@) 00034 */ 00035 HRESULT WINAPI DllCanUnloadNow(void) 00036 { 00037 return S_FALSE; 00038 } 00039 00040 /*********************************************************************** 00041 * DllRegisterServer (COMCAT.@) 00042 */ 00043 HRESULT WINAPI DllRegisterServer(void) 00044 { 00045 return S_OK; 00046 } 00047 00048 /*********************************************************************** 00049 * DllUnregisterServer (COMCAT.@) 00050 */ 00051 HRESULT WINAPI DllUnregisterServer(void) 00052 { 00053 return S_OK; 00054 } Generated on Sun May 27 2012 04:22:57 for ReactOS by
1.7.6.1
|