Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenfiledlg31.h
Go to the documentation of this file.
00001 /* 00002 * Win3.1 style File Dialog interface (32 bit) 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00017 */ 00018 00019 #ifndef _WINE_DLL_FILEDLG31_H 00020 #define _WINE_DLL_FILEDLG31_H 00021 00022 #define FD31_OFN_PROP "FILEDLG_OFN" 00023 00024 typedef struct tagFD31_DATA 00025 { 00026 HWND hwnd; /* file dialog window handle */ 00027 BOOL hook; /* TRUE if the dialog is hooked */ 00028 UINT lbselchstring; /* registered message id */ 00029 UINT fileokstring; /* registered message id */ 00030 LPARAM lParam; /* save original lparam */ 00031 LPCVOID template; /* template for 32 bits resource */ 00032 BOOL open; /* TRUE if open dialog, FALSE if save dialog */ 00033 LPOPENFILENAMEW ofnW; /* pointer either to the original structure or 00034 a W copy for A/16 API */ 00035 LPOPENFILENAMEA ofnA; /* original structure if 32bits ansi dialog */ 00036 } FD31_DATA, *PFD31_DATA; 00037 00038 extern BOOL FD32_GetTemplate(PFD31_DATA lfs) DECLSPEC_HIDDEN; 00039 00040 extern BOOL FD31_Init(void) DECLSPEC_HIDDEN; 00041 extern PFD31_DATA FD31_AllocPrivate(LPARAM lParam, UINT dlgType, BOOL IsUnicode) DECLSPEC_HIDDEN; 00042 extern void FD31_DestroyPrivate(PFD31_DATA lfs) DECLSPEC_HIDDEN; 00043 extern BOOL FD31_CallWindowProc(const FD31_DATA *lfs, UINT wMsg, WPARAM wParam, 00044 LPARAM lParam) DECLSPEC_HIDDEN; 00045 extern LONG FD31_WMInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam) DECLSPEC_HIDDEN; 00046 extern LONG FD31_WMDrawItem(HWND hWnd, WPARAM wParam, LPARAM lParam, 00047 int savedlg, const DRAWITEMSTRUCT *lpdis) DECLSPEC_HIDDEN; 00048 extern LRESULT FD31_WMCommand(HWND hWnd, LPARAM lParam, UINT notification, 00049 UINT control, const FD31_DATA *lfs) DECLSPEC_HIDDEN; 00050 extern int FD31_GetFldrHeight(void) DECLSPEC_HIDDEN; 00051 00052 #endif /* _WINE_DLL_FILEDLG31_H */ Generated on Sat May 26 2012 04:21:42 for ReactOS by
1.7.6.1
|