On 27 Aug 2003, Mike Hearn wrote:
- Merge X11DRV dialog code from Mark
- Move X11DRV dialog init code to a separate file
- Link with Xlib to get XParseGeometry
--- /dev/null 2003-01-30 10:24:37.000000000 +0000 +++ programs/winecfg/x11drvdlg.h 2003-08-26 23:16:32.000000000 +0100 @@ -0,0 +1,10 @@ +#ifndef X11DRVDLG_H +#define X11DRVDLG_H + +#include "winecfg.h" + +void initX11DrvDlg (HWND hDlg); +void saveX11DrvDlgSettings (HWND hDlg); +INT_PTR CALLBACK X11DrvDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); + +#endif
Do we really need a separate .h file for this? It just seems we make the thing a lot more complicated than needed...