just fixed a few warnings

svn path=/trunk/; revision=3996
This commit is contained in:
guido 2003-01-14 18:51:12 +00:00
parent 6f63730de8
commit 0319671dea
3 changed files with 10 additions and 8 deletions

View file

@ -40,13 +40,13 @@ DFWINDOW CaptureKeyboard;
static BOOL NoChildCaptureMouse; static BOOL NoChildCaptureMouse;
static BOOL NoChildCaptureKeyboard; static BOOL NoChildCaptureKeyboard;
static int doubletimer = -1; //static int doubletimer = -1;
static int delaytimer = -1; //static int delaytimer = -1;
static int clocktimer = -1; static int clocktimer = -1;
static DFWINDOW Cwnd; static DFWINDOW Cwnd;
static char ermsg[] = "Error accessing drive x"; //static char ermsg[] = "Error accessing drive x";
static void StopMsg(void) static void StopMsg(void)

View file

@ -130,10 +130,10 @@ do_exit(int ec)
LRESULT CALLBACK LRESULT CALLBACK
WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{ {
int i; // int i;
int lw = LOWORD(wParam); // int lw = LOWORD(wParam);
int hw = HIWORD(wParam); // int hw = HIWORD(wParam);
HWND w = (HWND)lParam; // HWND w = (HWND)lParam;
window = hWnd; window = hWnd;

View file

@ -1,6 +1,6 @@
//====================================================================== //======================================================================
// //
// $Id: format.c,v 1.2 2000/02/29 23:57:46 ea Exp $ // $Id: format.c,v 1.3 2003/01/14 18:51:12 guido Exp $
// //
// Formatx // Formatx
// //
@ -271,6 +271,8 @@ FormatExCallback(
Error = TRUE; Error = TRUE;
} }
break; break;
default:
break;
} }
return TRUE; return TRUE;
} }