Fix the DisplayApplet function definition
authorThomas Bluemel <thomas@reactsoft.com>
Sat, 28 Jul 2007 19:56:15 +0000 (19:56 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Sat, 28 Jul 2007 19:56:15 +0000 (19:56 +0000)
svn path=/trunk/; revision=27970

reactos/dll/cpl/desk/desk.c

index c22e20e..4fd13d7 100644 (file)
@@ -13,7 +13,7 @@
 
 #define NUM_APPLETS    (1)
 
 
 #define NUM_APPLETS    (1)
 
-LONG APIENTRY DisplayApplet(HWND hwnd, UINT uMsg, LONG wParam, LONG lParam);
+static LONG APIENTRY DisplayApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam);
 
 extern INT_PTR CALLBACK BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
 extern INT_PTR CALLBACK ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
 
 extern INT_PTR CALLBACK BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
 extern INT_PTR CALLBACK ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
@@ -47,8 +47,8 @@ InitPropSheetPage(PROPSHEETPAGE *psp, WORD idDlg, DLGPROC DlgProc)
 
 
 /* Display Applet */
 
 
 /* Display Applet */
-LONG APIENTRY
-DisplayApplet(HWND hwnd, UINT uMsg, LONG wParam, LONG lParam)
+static LONG APIENTRY
+DisplayApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
 {
     PROPSHEETPAGE psp[4];
     PROPSHEETHEADER psh;
 {
     PROPSHEETPAGE psp[4];
     PROPSHEETHEADER psh;