comboex: cleanup

Dimitrie O. Paun dpaun at rogers.com
Tue Oct 26 23:54:38 CDT 2004


ChangeLog
    Minor cleanups.


Index: dlls/comctl32/comboex.c
===================================================================
RCS file: /var/cvs/wine/dlls/comctl32/comboex.c,v
retrieving revision 1.75
diff -u -r1.75 comboex.c
--- dlls/comctl32/comboex.c	21 Oct 2004 20:59:38 -0000	1.75
+++ dlls/comctl32/comboex.c	26 Oct 2004 05:32:13 -0000
@@ -47,7 +47,7 @@
 /* Item structure */
 typedef struct
 {
-    VOID         *next;
+    void         *next;
     UINT         mask;
     LPWSTR       pszText;
     LPWSTR       pszTemp;
@@ -126,10 +126,8 @@
 
 
 /* Things common to the entire DLL */
-static LRESULT WINAPI
-COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
-static LRESULT WINAPI
-COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
+static LRESULT WINAPI COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
+static LRESULT WINAPI COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
 static LRESULT COMBOEX_Destroy (COMBOEX_INFO *infoPtr);
 typedef INT (WINAPI *cmp_func_t)(LPCWSTR, LPCWSTR);
 



More information about the wine-patches mailing list