1 added + 53 modified, total 54 files
reactos/apps/tests/capclock
diff -u -r1.3 -r1.4
--- capclock.c 14 Nov 2003 17:13:16 -0000 1.3
+++ capclock.c 11 Oct 2004 21:08:03 -0000 1.4
@@ -1,4 +1,4 @@
-/* $Id: capclock.c,v 1.3 2003/11/14 17:13:16 weiden Exp $
+/* $Id: capclock.c,v 1.4 2004/10/11 21:08:03 weiden Exp $
*
* DESCRIPTION: Simple Win32 Caption Clock
* PROJECT : ReactOS (test applications)
@@ -27,7 +27,7 @@
wc.hbrBackground = (HBRUSH) (COLOR_WINDOW + 1);
wc.lpszClassName = "CapClock";
RegisterClass (& wc);
- return DialogBox(hinst, MAKEINTRESOURCE(2), NULL, (DLGPROC) DialogFunc);
+ return DialogBox(hinst, MAKEINTRESOURCE(2), NULL, DialogFunc);
}
static int InitializeApp (HWND hDlg,WPARAM wParam, LPARAM lParam)
@@ -36,7 +36,7 @@
TimerProc (hDlg,0,0,0);
return 1;
}
-static BOOL CALLBACK DialogFunc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DialogFunc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
reactos/apps/tests/dirdlg
diff -u -r1.2 -r1.3
--- dirdlg.c 19 Nov 2003 20:12:34 -0000 1.2
+++ dirdlg.c 11 Oct 2004 21:08:03 -0000 1.3
@@ -6,7 +6,7 @@
static char selected[MAX_PATH + 1];
-BOOL
+INT_PTR
CALLBACK
DlgMainProc(
HWND hwndDlg,
reactos/lib/cpl/access
diff -u -r1.2 -r1.3
--- access.c 10 Jul 2004 22:06:39 -0000 1.2
+++ access.c 11 Oct 2004 21:08:03 -0000 1.3
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: access.c,v 1.2 2004/07/10 22:06:39 kuehng Exp $
+/* $Id: access.c,v 1.3 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/sysdm.c
@@ -37,11 +37,11 @@
#define NUM_APPLETS (1)
LONG CALLBACK SystemApplet(VOID);
-BOOL CALLBACK DisplayPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK KeyboardPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK MousePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK SoundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK DisplayPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK KeyboardPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK MousePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK SoundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
HINSTANCE hApplet = 0;
/* Applets */
reactos/lib/cpl/access
diff -u -r1.1 -r1.2
--- display.c 30 Jun 2004 12:16:27 -0000 1.1
+++ display.c 11 Oct 2004 21:08:03 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: display.c,v 1.1 2004/06/30 12:16:27 ekohl Exp $
+/* $Id: display.c,v 1.2 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -31,7 +31,7 @@
#include "access.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
DisplayPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/access
diff -u -r1.1 -r1.2
--- general.c 30 Jun 2004 12:16:27 -0000 1.1
+++ general.c 11 Oct 2004 21:08:03 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: general.c,v 1.1 2004/06/30 12:16:27 ekohl Exp $
+/* $Id: general.c,v 1.2 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -31,7 +31,7 @@
#include "access.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
GeneralPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/access
diff -u -r1.1 -r1.2
--- keyboard.c 30 Jun 2004 12:16:27 -0000 1.1
+++ keyboard.c 11 Oct 2004 21:08:03 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: keyboard.c,v 1.1 2004/06/30 12:16:27 ekohl Exp $
+/* $Id: keyboard.c,v 1.2 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -31,7 +31,7 @@
#include "access.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
KeyboardPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/access
diff -u -r1.1 -r1.2
--- mouse.c 30 Jun 2004 12:16:27 -0000 1.1
+++ mouse.c 11 Oct 2004 21:08:03 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: mouse.c,v 1.1 2004/06/30 12:16:27 ekohl Exp $
+/* $Id: mouse.c,v 1.2 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -31,7 +31,7 @@
#include "access.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
MousePageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/access
diff -u -r1.1 -r1.2
--- sound.c 30 Jun 2004 12:16:27 -0000 1.1
+++ sound.c 11 Oct 2004 21:08:03 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: sound.c,v 1.1 2004/06/30 12:16:27 ekohl Exp $
+/* $Id: sound.c,v 1.2 2004/10/11 21:08:03 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -31,7 +31,7 @@
#include "access.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
SoundPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/appwiz
diff -u -r1.3 -r1.4
--- appwiz.c 10 Jul 2004 22:06:39 -0000 1.3
+++ appwiz.c 11 Oct 2004 21:08:04 -0000 1.4
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: appwiz.c,v 1.3 2004/07/10 22:06:39 kuehng Exp $
+/* $Id: appwiz.c,v 1.4 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS Software Control Panel
* FILE: lib/cpl/system/appwiz.c
@@ -42,8 +42,8 @@
#define NUM_APPLETS (1)
LONG CALLBACK SystemApplet(VOID);
-BOOL CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK ComputerPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ComputerPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
HINSTANCE hApplet = 0;
/* Applets */
@@ -106,7 +106,7 @@
/* Property page dialog callback */
-static BOOL CALLBACK
+static INT_PTR CALLBACK
InstallPageProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{
TCHAR pszName[MAX_PATH];
@@ -183,7 +183,7 @@
/* Property page dialog callback */
-static BOOL CALLBACK
+static INT_PTR CALLBACK
RosPageProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{
switch(uMsg)
reactos/lib/cpl/cplsample
diff -u -r1.3 -r1.4
--- cplsample.c 10 Jul 2004 22:06:40 -0000 1.3
+++ cplsample.c 11 Oct 2004 21:08:04 -0000 1.4
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: cplsample.c,v 1.3 2004/07/10 22:06:40 kuehng Exp $
+/* $Id: cplsample.c,v 1.4 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS Sample Control Panel
* FILE: lib/cpl/cplsample/cplsample.c
@@ -53,7 +53,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
Page1Proc(
HWND hwndDlg,
UINT uMsg,
@@ -70,7 +70,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
Page2Proc(
HWND hwndDlg,
UINT uMsg,
@@ -87,7 +87,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
Page3Proc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/desk
diff -u -r1.1 -r1.2
--- desk.c 7 Aug 2004 00:05:23 -0000 1.1
+++ desk.c 11 Oct 2004 21:08:04 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: desk.c,v 1.1 2004/08/07 00:05:23 kuehng Exp $
+/* $Id: desk.c,v 1.2 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS Display Control Panel
* FILE: lib/cpl/desk/desk.c
@@ -49,10 +49,10 @@
#define NUM_APPLETS (1)
LONG CALLBACK DisplayApplet(VOID);
-BOOL CALLBACK BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK AppearancePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK SettingsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK AppearancePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK SettingsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
HINSTANCE hApplet = 0;
/* Applets */
@@ -64,7 +64,8 @@
/* Property page dialog callback */
-BOOL CALLBACK BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+BackgroundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
@@ -76,7 +77,8 @@
return FALSE;
}
/* Property page dialog callback */
-BOOL CALLBACK ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ScreenSaverPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
@@ -88,7 +90,8 @@
return FALSE;
}
/* Property page dialog callback */
-BOOL CALLBACK AppearancePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+AppearancePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
@@ -100,7 +103,8 @@
return FALSE;
}
/* Property page dialog callback */
-BOOL CALLBACK SettingsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+SettingsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
reactos/lib/cpl/ncpa
diff -u -r1.3 -r1.4
--- ncpa.c 26 Sep 2004 15:55:52 -0000 1.3
+++ ncpa.c 11 Oct 2004 21:08:04 -0000 1.4
@@ -15,7 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: ncpa.c,v 1.3 2004/09/26 15:55:52 weiden Exp $
+/* $Id: ncpa.c,v 1.4 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS Network Control Panel
* FILE: lib/cpl/system/ncpa.c
@@ -129,7 +129,7 @@
LONG CALLBACK DisplayApplet(VOID);
-BOOL CALLBACK NetworkPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK NetworkPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
void DisplayTCPIPProperties(HWND hParent,IP_ADAPTER_INFO *pInfo);
HINSTANCE hApplet = 0;
@@ -240,7 +240,8 @@
-BOOL CALLBACK NICPropertyPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+NICPropertyPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
PROPSHEETPAGE *pPage = (PROPSHEETPAGE *)GetWindowLongPtr(hwndDlg,GWL_USERDATA);
switch(uMsg)
@@ -426,7 +427,8 @@
-BOOL CALLBACK NICStatusPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+NICStatusPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
@@ -608,7 +610,8 @@
}
-BOOL CALLBACK NetworkPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+NetworkPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
NMHDR* pnmh;
int nIndex;
reactos/lib/cpl/ncpa
diff -u -r1.2 -r1.3
--- tcpip_properties.c 26 Sep 2004 15:55:52 -0000 1.2
+++ tcpip_properties.c 11 Oct 2004 21:08:04 -0000 1.3
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: tcpip_properties.c,v 1.2 2004/09/26 15:55:52 weiden Exp $
+/* $Id: tcpip_properties.c,v 1.3 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS Network Control Panel
* FILE: lib/cpl/system/tcpip_properties.c
@@ -52,7 +52,8 @@
extern void InitPropSheetPage(PROPSHEETPAGE *psp, WORD idDlg, DLGPROC DlgProc);
-BOOL CALLBACK TCPIPPropertyPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+TCPIPPropertyPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
PROPSHEETPAGE *pPage = (PROPSHEETPAGE *)GetWindowLongPtr(hwndDlg,GWL_USERDATA);
IP_ADAPTER_INFO *pInfo = NULL;
reactos/lib/cpl/sysdm
diff -u -r1.3 -r1.4
--- advanced.c 2 Jul 2004 20:28:00 -0000 1.3
+++ advanced.c 11 Oct 2004 21:08:04 -0000 1.4
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: advanced.c,v 1.3 2004/07/02 20:28:00 ekohl Exp $
+/* $Id: advanced.c,v 1.4 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/advanced.c
@@ -33,7 +33,7 @@
#include "sysdm.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
AdvancedPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/sysdm
diff -u -r1.1 -r1.2
--- computer.c 8 Mar 2004 14:24:47 -0000 1.1
+++ computer.c 11 Oct 2004 21:08:04 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: computer.c,v 1.1 2004/03/08 14:24:47 weiden Exp $
+/* $Id: computer.c,v 1.2 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/computer.c
@@ -31,7 +31,7 @@
#include "sysdm.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
ComputerPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/sysdm
diff -u -r1.4 -r1.5
--- environment.c 26 Sep 2004 15:55:53 -0000 1.4
+++ environment.c 11 Oct 2004 21:08:04 -0000 1.5
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: environment.c,v 1.4 2004/09/26 15:55:53 weiden Exp $
+/* $Id: environment.c,v 1.5 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/sysdm/environment.c
@@ -42,7 +42,7 @@
-BOOL CALLBACK
+INT_PTR CALLBACK
EditVariableDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -475,7 +475,7 @@
/* Environment dialog procedure */
-BOOL CALLBACK
+INT_PTR CALLBACK
EnvironmentDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
reactos/lib/cpl/sysdm
diff -u -r1.2 -r1.3
--- general.c 30 Jun 2004 10:53:05 -0000 1.2
+++ general.c 11 Oct 2004 21:08:04 -0000 1.3
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: general.c,v 1.2 2004/06/30 10:53:05 ekohl Exp $
+/* $Id: general.c,v 1.3 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/general.c
@@ -90,7 +90,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
GeneralPageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/sysdm
diff -u -r1.2 -r1.3
--- hardware.c 30 Jun 2004 10:53:05 -0000 1.2
+++ hardware.c 11 Oct 2004 21:08:04 -0000 1.3
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: hardware.c,v 1.2 2004/06/30 10:53:05 ekohl Exp $
+/* $Id: hardware.c,v 1.3 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/hardware.c
@@ -55,7 +55,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
HardwarePageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/cpl/sysdm
diff -u -r1.3 -r1.4
--- sysdm.h 2 Jul 2004 20:28:00 -0000 1.3
+++ sysdm.h 11 Oct 2004 21:08:04 -0000 1.4
@@ -15,14 +15,14 @@
void ShowLastWin32Error(HWND hWndOwner);
-BOOL CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK ComputerPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK HardwarePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK AdvancedPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-BOOL CALLBACK UserProfilePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ComputerPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK HardwarePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK AdvancedPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK UserProfilePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
/* environment.c */
-BOOL CALLBACK EnvironmentDlgProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK EnvironmentDlgProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
#endif /* __CPL_SYSDM_H */
reactos/lib/cpl/sysdm
diff -u -r1.1 -r1.2
--- userprofile.c 30 Jun 2004 10:53:05 -0000 1.1
+++ userprofile.c 11 Oct 2004 21:08:04 -0000 1.2
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: userprofile.c,v 1.1 2004/06/30 10:53:05 ekohl Exp $
+/* $Id: userprofile.c,v 1.2 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS System Control Panel
* FILE: lib/cpl/system/computer.c
@@ -31,7 +31,7 @@
#include "sysdm.h"
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
UserProfilePageProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/devmgr
diff -u -r1.2 -r1.3
--- devmgr.c 28 Sep 2004 16:04:15 -0000 1.2
+++ devmgr.c 11 Oct 2004 21:08:04 -0000 1.3
@@ -16,7 +16,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: devmgr.c,v 1.2 2004/09/28 16:04:15 weiden Exp $
+/* $Id: devmgr.c,v 1.3 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS devmgr.dll
* FILE: lib/devmgr/devmgr.c
@@ -29,7 +29,7 @@
#include "devmgr.h"
#include "resource.h"
-extern HINSTANCE hDllInstance;
+HINSTANCE hDllInstance;
BOOL STDCALL
reactos/lib/devmgr
diff -u -r1.1 -r1.2
--- devmgr.h 4 Apr 2004 21:49:15 -0000 1.1
+++ devmgr.h 11 Oct 2004 21:08:04 -0000 1.2
@@ -1,7 +1,7 @@
#ifndef __DEVMGR_H
#define __DEVMGR_H
-HINSTANCE hDllInstance;
+extern HINSTANCE hDllInstance;
WINBOOL
WINAPI
reactos/lib/msgina
diff -u -r1.9 -r1.10
--- msgina.c 28 Mar 2004 12:19:07 -0000 1.9
+++ msgina.c 11 Oct 2004 21:08:04 -0000 1.10
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: msgina.c,v 1.9 2004/03/28 12:19:07 weiden Exp $
+/* $Id: msgina.c,v 1.10 2004/10/11 21:08:04 weiden Exp $
*
* PROJECT: ReactOS msgina.dll
* FILE: lib/msgina/msgina.c
@@ -42,7 +42,7 @@
HANDLE StartupEvent;
} DISPLAYSTATUSMSG, *PDISPLAYSTATUSMSG;
-BOOL CALLBACK
+INT_PTR CALLBACK
LoggedOnDlgProc(
HWND hwndDlg,
UINT uMsg,
reactos/lib/syssetup
diff -u -r1.8 -r1.9
--- wizard.c 26 Sep 2004 15:55:53 -0000 1.8
+++ wizard.c 11 Oct 2004 21:08:04 -0000 1.9
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: wizard.c,v 1.8 2004/09/26 15:55:53 weiden Exp $
+/* $Id: wizard.c,v 1.9 2004/10/11 21:08:04 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@@ -98,7 +98,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
WelcomeDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -164,7 +164,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
OwnerPageDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -254,7 +254,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
ComputerPageDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -355,7 +355,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
LocalePageDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -406,7 +406,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
ProcessPageDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
@@ -481,7 +481,7 @@
-BOOL CALLBACK
+INT_PTR CALLBACK
FinishDlgProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
reactos/subsys/system/explorer/shell
diff -u -r1.52 -r1.53
--- filechild.cpp 2 Aug 2004 19:16:18 -0000 1.52
+++ filechild.cpp 11 Oct 2004 21:08:05 -0000 1.53
@@ -93,7 +93,7 @@
}
-BOOL CALLBACK ExecuteDialog::WndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
+INT_PTR CALLBACK ExecuteDialog::WndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
{
static struct ExecuteDialog* dlg;
reactos/subsys/system/explorer/shell
diff -u -r1.20 -r1.21
--- filechild.h 31 May 2004 22:39:12 -0000 1.20
+++ filechild.h 11 Oct 2004 21:08:05 -0000 1.21
@@ -132,5 +132,5 @@
TCHAR cmd[MAX_PATH];
int cmdshow;
- static BOOL CALLBACK WndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam);
+ static INT_PTR CALLBACK WndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam);
};
reactos/subsys/system/regedit
diff -u -r1.9 -r1.10
--- childwnd.c 21 Jun 2004 10:24:51 -0000 1.9
+++ childwnd.c 11 Oct 2004 21:08:05 -0000 1.10
@@ -131,7 +131,8 @@
* WM_DESTROY - post a quit message and return
*
*/
-LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
static short last_split;
BOOL Result;
reactos/subsys/system/regedit
diff -u -r1.10 -r1.11
--- framewnd.c 10 Jul 2004 23:25:17 -0000 1.10
+++ framewnd.c 11 Oct 2004 21:08:05 -0000 1.11
@@ -642,7 +642,8 @@
*
*/
-LRESULT CALLBACK FrameWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+FrameWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) {
case WM_CREATE:
reactos/subsys/system/regedit
diff -u -r1.13 -r1.14
--- hexedit.c 26 Sep 2004 15:55:53 -0000 1.13
+++ hexedit.c 11 Oct 2004 21:08:05 -0000 1.14
@@ -60,7 +60,7 @@
#define HEHT_ASCIIDUMP (0x6)
#define HEHT_RIGHTMARGIN (0x7)
-LRESULT WINAPI HexEditWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK HexEditWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
ATOM
STDCALL
@@ -858,8 +858,7 @@
return 0;
}
-LRESULT
-WINAPI
+INT_PTR CALLBACK
HexEditWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
PHEXEDIT_DATA hed;
reactos/subsys/system/regedit
diff -u -r1.5 -r1.6
--- main.h 21 Jun 2004 08:47:38 -0000 1.5
+++ main.h 11 Oct 2004 21:08:05 -0000 1.6
@@ -80,10 +80,10 @@
extern void ShowAboutBox(HWND hWnd);
/* childwnd.c */
-extern LRESULT CALLBACK ChildWndProc(HWND, UINT, WPARAM, LPARAM);
+extern INT_PTR CALLBACK ChildWndProc(HWND, UINT, WPARAM, LPARAM);
/* framewnd.c */
-extern LRESULT CALLBACK FrameWndProc(HWND, UINT, WPARAM, LPARAM);
+extern INT_PTR CALLBACK FrameWndProc(HWND, UINT, WPARAM, LPARAM);
extern void SetupStatusBar(HWND hWnd, BOOL bResize);
extern void UpdateStatusBar(void);
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- about.c 15 Aug 2004 22:40:34 -0000 1.2
+++ about.c 11 Oct 2004 21:08:05 -0000 1.3
@@ -30,14 +30,15 @@
#include "about.h"
-LRESULT CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void OnAbout(void)
{
DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hMainWnd, (DLGPROC)AboutDialogWndProc);
}
-LRESULT CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
HWND hLicenseEditWnd;
TCHAR strLicense[0x1000];
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- affinity.c 15 Aug 2004 22:40:34 -0000 1.2
+++ affinity.c 11 Oct 2004 21:08:05 -0000 1.3
@@ -35,7 +35,7 @@
HANDLE hProcessAffinityHandle;
-LRESULT CALLBACK AffinityDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK AffinityDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void ProcessPage_OnSetAffinity(void)
{
@@ -69,7 +69,8 @@
}
}
-LRESULT CALLBACK AffinityDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+AffinityDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
DWORD dwProcessAffinityMask = 0;
DWORD dwSystemAffinityMask = 0;
reactos/subsys/system/taskmgr
diff -u -r1.4 -r1.5
--- applpage.c 15 Aug 2004 22:40:34 -0000 1.4
+++ applpage.c 11 Oct 2004 21:08:05 -0000 1.5
@@ -64,7 +64,8 @@
);
#endif
-LRESULT CALLBACK ApplicationPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ApplicationPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
RECT rc;
int nXDifference;
reactos/subsys/system/taskmgr
diff -u -r1.1 -r1.2
--- applpage.h 10 Jan 2004 02:14:13 -0000 1.1
+++ applpage.h 11 Oct 2004 21:08:05 -0000 1.2
@@ -30,7 +30,7 @@
extern HWND hApplicationPageSwitchToButton; /* Application Switch To button */
extern HWND hApplicationPageNewTaskButton; /* Application New Task button */
-LRESULT CALLBACK ApplicationPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ApplicationPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void RefreshApplicationPage(void);
void UpdateApplicationListControlViewSetting(void);
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- column.c 15 Aug 2004 22:40:34 -0000 1.2
+++ column.c 11 Oct 2004 21:08:05 -0000 1.3
@@ -33,8 +33,8 @@
UINT ColumnDataHints[25];
-int InsertColumn(int nCol, LPCTSTR lpszColumnHeading, int nFormat, int nWidth, int nSubItem);
-LRESULT CALLBACK ColumnsDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+int InsertColumn(int nCol, LPCTSTR lpszColumnHeading, int nFormat, int nWidth, int nSubItem);
+INT_PTR CALLBACK ColumnsDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void AddColumns(void)
{
@@ -368,7 +368,8 @@
}
}
-LRESULT CALLBACK ColumnsDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ColumnsDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- dbgchnl.c 15 Aug 2004 22:40:34 -0000 1.2
+++ dbgchnl.c 11 Oct 2004 21:08:05 -0000 1.3
@@ -397,7 +397,7 @@
}
}
-static LRESULT CALLBACK DebugChannelsDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DebugChannelsDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
@@ -419,5 +419,5 @@
void ProcessPage_OnDebugChannels(void)
{
- DialogBox(hInst, (LPCTSTR)IDD_DEBUG_CHANNELS_DIALOG, hMainWnd, (DLGPROC)DebugChannelsDlgProc);
+ DialogBox(hInst, (LPCTSTR)IDD_DEBUG_CHANNELS_DIALOG, hMainWnd, DebugChannelsDlgProc);
}
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- graph.c 15 Aug 2004 22:40:34 -0000 1.2
+++ graph.c 11 Oct 2004 21:08:05 -0000 1.3
@@ -40,7 +40,8 @@
void Graph_DrawMemUsageGraph(HDC hDC, HWND hWnd);
void Graph_DrawMemUsageHistoryGraph(HDC hDC, HWND hWnd);
-LRESULT CALLBACK Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
reactos/subsys/system/taskmgr
diff -u -r1.1 -r1.2
--- graph.h 10 Jan 2004 02:14:13 -0000 1.1
+++ graph.h 11 Oct 2004 21:08:05 -0000 1.2
@@ -34,7 +34,7 @@
extern LONG OldGraphWndProc;
-LRESULT CALLBACK Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
#ifdef __cplusplus
reactos/subsys/system/taskmgr
diff -u -r1.3 -r1.4
--- graphctl.c 15 Aug 2004 22:40:34 -0000 1.3
+++ graphctl.c 11 Oct 2004 21:08:05 -0000 1.4
@@ -530,7 +530,8 @@
extern HWND hPerformancePageCpuUsageHistoryGraph;
extern HWND hPerformancePageMemUsageHistoryGraph;
-LRESULT CALLBACK GraphCtrl_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+GraphCtrl_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
RECT rcClient;
HDC hdc;
reactos/subsys/system/taskmgr
diff -u -r1.1 -r1.2
--- graphctl.h 10 Jan 2004 02:14:13 -0000 1.1
+++ graphctl.h 11 Oct 2004 21:08:05 -0000 1.2
@@ -104,7 +104,7 @@
void GraphCtrl_SetRange(TGraphCtrl* this, double dLower, double
dUpper, int nDecimalPlaces);
-LRESULT CALLBACK GraphCtrl_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK GraphCtrl_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
#ifdef __cplusplus
}
reactos/subsys/system/taskmgr
diff -u -r1.5 -r1.6
--- perfpage.c 26 Sep 2004 15:55:53 -0000 1.5
+++ perfpage.c 11 Oct 2004 21:08:05 -0000 1.6
@@ -117,7 +117,8 @@
AdjustFrameSize(GetDlgItem(hDlg, ctrl_id), hDlg, nXDifference, nYDifference, 0);
}
-LRESULT CALLBACK PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
RECT rc;
int nXDifference;
reactos/subsys/system/taskmgr
diff -u -r1.1 -r1.2
--- perfpage.h 10 Jan 2004 02:14:13 -0000 1.1
+++ perfpage.h 11 Oct 2004 21:08:05 -0000 1.2
@@ -28,7 +28,7 @@
#endif
extern HWND hPerformancePage; /* Performance Property Page */
-LRESULT CALLBACK PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void RefreshPerformancePage(void);
void PerformancePage_OnViewShowKernelTimes(void);
void PerformancePage_OnViewCPUHistoryOneGraphAll(void);
reactos/subsys/system/taskmgr
diff -u -r1.3 -r1.4
--- proclist.c 26 Sep 2004 15:55:53 -0000 1.3
+++ proclist.c 11 Oct 2004 21:08:05 -0000 1.4
@@ -34,12 +34,13 @@
#include "perfdata.h"
-LRESULT CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
WNDPROC OldProcessListWndProc;
-LRESULT CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
HBRUSH hbrBackground;
RECT rcItem;
@@ -116,5 +117,5 @@
/*
* We pass on all messages except WM_ERASEBKGND
*/
- return CallWindowProc((WNDPROC)OldProcessListWndProc, hWnd, message, wParam, lParam);
+ return CallWindowProc(OldProcessListWndProc, hWnd, message, wParam, lParam);
}
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- proclist.h 26 Sep 2004 15:55:53 -0000 1.2
+++ proclist.h 11 Oct 2004 21:08:05 -0000 1.3
@@ -23,7 +23,7 @@
#ifndef __PROCLIST_H
#define __PROCLIST_H
-LRESULT CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
extern WNDPROC OldProcessListWndProc;
reactos/subsys/system/taskmgr
diff -u -r1.5 -r1.6
--- procpage.c 26 Sep 2004 15:55:53 -0000 1.5
+++ procpage.c 11 Oct 2004 21:08:05 -0000 1.6
@@ -53,7 +53,8 @@
void ProcessPageShowContextMenu(DWORD dwProcessId);
DWORD WINAPI ProcessPageRefreshThread(void *lpParameter);
-LRESULT CALLBACK ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
RECT rc;
int nXDifference;
reactos/subsys/system/taskmgr
diff -u -r1.1 -r1.2
--- procpage.h 10 Jan 2004 02:14:13 -0000 1.1
+++ procpage.h 11 Oct 2004 21:08:05 -0000 1.2
@@ -29,7 +29,7 @@
extern HWND hProcessPageEndProcessButton; /* Process End Process button */
extern HWND hProcessPageShowAllProcessesButton; /* Process Show All Processes checkbox */
-LRESULT CALLBACK ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
+INT_PTR CALLBACK ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
void RefreshProcessPage(void);
#endif /* __PROCESSPAGE_H */
reactos/subsys/system/taskmgr
diff -u -r1.4 -r1.5
--- taskmgr.c 15 Aug 2004 22:40:34 -0000 1.4
+++ taskmgr.c 11 Oct 2004 21:08:05 -0000 1.5
@@ -106,7 +106,7 @@
return -1;
}
- DialogBox(hInst, (LPCTSTR)IDD_TASKMGR_DIALOG, NULL, (DLGPROC)TaskManagerWndProc);
+ DialogBox(hInst, (LPCTSTR)IDD_TASKMGR_DIALOG, NULL, TaskManagerWndProc);
/* Save our settings to the registry */
SaveSettings();
@@ -115,7 +115,8 @@
}
/* Message handler for dialog box. */
-LRESULT CALLBACK TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK
+TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
reactos/subsys/system/taskmgr
diff -u -r1.2 -r1.3
--- taskmgr.h 30 Jul 2004 13:39:56 -0000 1.2
+++ taskmgr.h 11 Oct 2004 21:08:05 -0000 1.3
@@ -125,7 +125,7 @@
extern TASKMANAGER_SETTINGS TaskManagerSettings;
/* Foward declarations of functions included in this code module: */
-LRESULT CALLBACK TaskManagerWndProc(HWND, UINT, WPARAM, LPARAM);
+INT_PTR CALLBACK TaskManagerWndProc(HWND, UINT, WPARAM, LPARAM);
BOOL OnCreate(HWND hWnd);
void OnSize(UINT nType, int cx, int cy);
void OnMove(UINT nType, int cx, int cy);
reactos/subsys/system/vmwinst
diff -u -r1.11 -r1.12
--- vmwinst.c 24 Sep 2004 20:20:46 -0000 1.11
+++ vmwinst.c 11 Oct 2004 21:08:05 -0000 1.12
@@ -18,7 +18,7 @@
*
* VMware is a registered trademark of VMware, Inc.
*/
-/* $Id: vmwinst.c,v 1.11 2004/09/24 20:20:46 weiden Exp $
+/* $Id: vmwinst.c,v 1.12 2004/10/11 21:08:05 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS VMware(r) driver installation utility
@@ -369,7 +369,7 @@
}
/* Property page dialog callback */
-int CALLBACK
+INT_PTR CALLBACK
PageWelcomeProc(
HWND hwndDlg,
UINT uMsg,
@@ -414,7 +414,7 @@
}
/* Property page dialog callback */
-int CALLBACK
+INT_PTR CALLBACK
PageInsertDiscProc(
HWND hwndDlg,
UINT uMsg,
@@ -569,7 +569,7 @@
}
/* Property page dialog callback */
-int CALLBACK
+INT_PTR CALLBACK
PageInstallingProc(
HWND hwndDlg,
UINT uMsg,
@@ -638,7 +638,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
PageInstallFailedProc(
HWND hwndDlg,
UINT uMsg,
@@ -686,7 +686,7 @@
} MAPCTLRES;
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
PageConfigProc(
HWND hwndDlg,
UINT uMsg,
@@ -799,7 +799,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
PageChooseActionProc(
HWND hwndDlg,
UINT uMsg,
@@ -851,7 +851,7 @@
}
/* Property page dialog callback */
-BOOL CALLBACK
+INT_PTR CALLBACK
PageSelectDriverProc(
HWND hwndDlg,
UINT uMsg,
@@ -921,7 +921,7 @@
MessageBox(Owner, Msg, NULL, MB_ICONINFORMATION);
}
-BOOL CALLBACK
+INT_PTR CALLBACK
PageDoUninstallProc(
HWND hwndDlg,
UINT uMsg,
reactos/subsys/system/welcome
diff -u -r1.6 -r1.7
--- welcome.c 26 Sep 2004 15:55:53 -0000 1.6
+++ welcome.c 11 Oct 2004 21:08:05 -0000 1.7
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: welcome.c,v 1.6 2004/09/26 15:55:53 weiden Exp $
+/* $Id: welcome.c,v 1.7 2004/10/11 21:08:05 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS welcome/autorun application
@@ -89,7 +89,7 @@
WNDPROC fnOldBtn;
-LRESULT CALLBACK
+INT_PTR CALLBACK
MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
@@ -211,7 +211,7 @@
}
-LRESULT CALLBACK
+INT_PTR CALLBACK
ButtonSubclassWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
LONG i;
@@ -783,7 +783,7 @@
}
-LRESULT CALLBACK
+INT_PTR CALLBACK
MainWndProc(HWND hWnd,
UINT uMsg,
WPARAM wParam,
reactos/subsys/system/winefile
diff -u -r1.15 -r1.16
--- winefile.c 9 Oct 2004 14:07:13 -0000 1.15
+++ winefile.c 11 Oct 2004 21:08:05 -0000 1.16
@@ -1601,7 +1601,7 @@
};
-static BOOL CALLBACK ExecuteDialogDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
+static INT_PTR CALLBACK ExecuteDialogDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
{
static struct ExecuteDialog* dlg;
@@ -1627,7 +1627,7 @@
return 0;
}
-static BOOL CALLBACK DestinationDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
+static INT_PTR CALLBACK DestinationDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
{
TCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
reactos/subsys/system/winlogon
diff -u -r1.34 -r1.35
--- winlogon.c 12 Jul 2004 20:09:35 -0000 1.34
+++ winlogon.c 11 Oct 2004 21:08:05 -0000 1.35
@@ -1,4 +1,4 @@
-/* $Id: winlogon.c,v 1.34 2004/07/12 20:09:35 gvg Exp $
+/* $Id: winlogon.c,v 1.35 2004/10/11 21:08:05 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -65,7 +65,7 @@
}
-BOOL CALLBACK
+INT_PTR CALLBACK
ShutdownComputerProc (HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
reactos/subsys/system/winlogon
diff -u -r1.5 -r1.6
--- wlx.c 12 Jul 2004 20:09:35 -0000 1.5
+++ wlx.c 11 Oct 2004 21:08:05 -0000 1.6
@@ -1,4 +1,4 @@
-/* $Id: wlx.c,v 1.5 2004/07/12 20:09:35 gvg Exp $
+/* $Id: wlx.c,v 1.6 2004/10/11 21:08:05 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -521,8 +521,7 @@
RegCloseKey(hKey);
}
-BOOL
-CALLBACK
+INT_PTR CALLBACK
GinaLoadFailedProc(
HWND hwndDlg,
UINT uMsg,
reactos/apps/utils/infinst
diff -N .cvsignore
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ .cvsignore 11 Oct 2004 21:08:06 -0000 1.1
@@ -0,0 +1,6 @@
+*.o
+*.d
+*.exe
+*.coff
+*.sym
+*.map
CVSspam 0.2.8