Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencompstui_main.c
Go to the documentation of this file.
00001 /* 00002 * Implementation of the Common Property Sheets User Interface 00003 * 00004 * Copyright 2006 Detlef Riekenberg 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 #define NONAMELESSUNION 00025 00026 #include "windef.h" 00027 #include "winbase.h" 00028 #include "winuser.h" 00029 #include "ddk/compstui.h" 00030 00031 #include "wine/unicode.h" 00032 #include "wine/debug.h" 00033 00034 WINE_DEFAULT_DEBUG_CHANNEL(compstui); 00035 00036 /***************************************************** 00037 * DllMain 00038 */ 00039 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) 00040 { 00041 TRACE("(%p, %d, %p)\n",hinstDLL, fdwReason, lpvReserved); 00042 00043 switch(fdwReason) 00044 { 00045 case DLL_WINE_PREATTACH: 00046 return FALSE; /* prefer native version */ 00047 00048 case DLL_PROCESS_ATTACH: 00049 DisableThreadLibraryCalls( hinstDLL ); 00050 break; 00051 } 00052 return TRUE; 00053 } 00054 00055 /****************************************************************** 00056 * CommonPropertySheetUIA (COMPSTUI.@) 00057 * 00058 */ 00059 LONG WINAPI CommonPropertySheetUIA(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult) 00060 { 00061 FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult); 00062 return CPSUI_CANCEL; 00063 } 00064 00065 /****************************************************************** 00066 * CommonPropertySheetUIW (COMPSTUI.@) 00067 * 00068 */ 00069 LONG WINAPI CommonPropertySheetUIW(HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult) 00070 { 00071 FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult); 00072 return CPSUI_CANCEL; 00073 } 00074 00075 /****************************************************************** 00076 * GetCPSUIUserData (COMPSTUI.@) 00077 * 00078 */ 00079 ULONG_PTR WINAPI GetCPSUIUserData(HWND hDlg) 00080 { 00081 FIXME("(%p): stub\n", hDlg); 00082 return 0; 00083 } 00084 00085 /****************************************************************** 00086 * SetCPSUIUserData (COMPSTUI.@) 00087 * 00088 */ 00089 BOOL WINAPI SetCPSUIUserData(HWND hDlg, ULONG_PTR UserData ) 00090 { 00091 FIXME("(%p, %08lx): stub\n", hDlg, UserData); 00092 return TRUE; 00093 } Generated on Sat May 26 2012 04:21:44 for ReactOS by
1.7.6.1
|