fixed some warnings

svn path=/trunk/; revision=25206
This commit is contained in:
Christoph von Wittich 2006-12-22 21:49:18 +00:00
parent 14847ebfcf
commit deecf156b8
21 changed files with 90 additions and 90 deletions

View file

@ -63,7 +63,7 @@ void UpdateMenu(HWND, HMENU);
BOOL InsertListViewItems();
void PositionHeader();
void CreateButtons();
void CreateButtons(HINSTANCE hInstance, HWND hwndParent);
void ListByClass();
/**************************************************************************
@ -654,7 +654,7 @@ void InsertIntoListView(int typ, LPTSTR name, LPTSTR intern_name)
item.iSubItem = 0;
item.state = 0;
//item.statemask = 0;
item.pszText=malloc(10);
item.pszText = (char*) malloc(10);
if (typ>=1)
{
sprintf(temp,"%i",typ);

View file

@ -14,7 +14,7 @@ AboutDialogProc(HWND hDlg,
{
case WM_INITDIALOG:
hIcon = LoadImage(hInstance,
hIcon = (HICON) LoadImage(hInstance,
MAKEINTRESOURCE(IDI_IMAGESOFTICON),
IMAGE_ICON,
16,

View file

@ -120,7 +120,7 @@ Bri_OnInitDialog(PIMAGEADJUST pImgAdj,
HWND hDlg,
LPARAM lParam)
{
pImgAdj = HeapAlloc(ProcessHeap,
pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap,
0,
sizeof(IMAGEADJUST));
if (!pImgAdj)
@ -137,7 +137,7 @@ Bri_OnInitDialog(PIMAGEADJUST pImgAdj,
&pImgAdj->ImageRect);
/* Make a static copy of the main image */
pImgAdj->hBitmap = CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
IMAGE_BITMAP,
pImgAdj->ImageRect.right,
pImgAdj->ImageRect.bottom,
@ -146,7 +146,7 @@ Bri_OnInitDialog(PIMAGEADJUST pImgAdj,
goto fail;
/* Make a copy which will be updated */
pImgAdj->hPreviewBitmap = CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
IMAGE_BITMAP,
pImgAdj->ImageRect.right,
pImgAdj->ImageRect.bottom,

View file

@ -121,7 +121,7 @@ Cont_OnInitDialog(PIMAGEADJUST pImgAdj,
HWND hDlg,
LPARAM lParam)
{
pImgAdj = HeapAlloc(ProcessHeap,
pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap,
0,
sizeof(IMAGEADJUST));
if (!pImgAdj)
@ -138,7 +138,7 @@ Cont_OnInitDialog(PIMAGEADJUST pImgAdj,
&pImgAdj->ImageRect);
/* Make a static copy of the main image */
pImgAdj->hBitmap = CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
IMAGE_BITMAP,
pImgAdj->ImageRect.right,
pImgAdj->ImageRect.bottom,
@ -147,7 +147,7 @@ Cont_OnInitDialog(PIMAGEADJUST pImgAdj,
goto fail;
/* Make a copy which will be updated */
pImgAdj->hPreviewBitmap = CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap,
IMAGE_BITMAP,
pImgAdj->ImageRect.right,
pImgAdj->ImageRect.bottom,

View file

@ -88,8 +88,8 @@ FlatComboProc(HWND hwnd,
pt[2].x = pt[1].x - 2;
pt[2].y = pt[1].y + 2;
oldPen = SelectObject(hdc, GetStockPen(WHITE_PEN));
oldBrush = SelectObject(hdc, GetStockBrush(WHITE_BRUSH));
oldPen = (HPEN) SelectObject(hdc, GetStockPen(WHITE_PEN));
oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(WHITE_BRUSH));
Polygon(hdc, pt, 3);
SelectObject(hdc, oldPen);
@ -112,7 +112,7 @@ FlatComboProc(HWND hwnd,
pt[2].x = pt[1].x - 2;
pt[2].y = pt[1].y + 2;
oldBrush = SelectObject(hdc, GetStockBrush(BLACK_BRUSH));
oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(BLACK_BRUSH));
Polygon(hdc, pt, 3);
SelectObject(hdc, oldBrush);

View file

@ -185,7 +185,7 @@ FloatToolbarCreateColorsGui(PMAIN_WND_INFO Info)
WS_CHILD | WS_VISIBLE | CBS_DROPDOWN,
2,
2,
rect.right * 0.65,
(int) (rect.right * 0.65),
rect.bottom - 2,
Info->fltColors->hSelf,
NULL,

View file

@ -88,7 +88,7 @@ FillFontSizeComboList(HWND hwndCombo)
INT cursize = 12;
INT i, count, nearest = 0;
HFONT hFont = GetStockObject(DEFAULT_GUI_FONT);
HFONT hFont = (HFONT) GetStockObject(DEFAULT_GUI_FONT);
SendMessage(hwndCombo,
WM_SETFONT,
@ -146,7 +146,7 @@ FillFontStyleComboList(HWND hwndCombo)
LOGFONT lf;
/* FIXME: draw each font in its own style */
HFONT hFont = GetStockObject(DEFAULT_GUI_FONT);
HFONT hFont = (HFONT) GetStockObject(DEFAULT_GUI_FONT);
SendMessage(hwndCombo,
WM_SETFONT,
(WPARAM)hFont,

View file

@ -129,8 +129,8 @@ userlist(int argc, char **argv)
int iErr;
if ((nargv = malloc((argc+1) * sizeof(char *))) == NULL ||
(used = calloc(argc, sizeof(int))) == NULL)
if ((nargv = (char**) malloc((argc+1) * sizeof(char *))) == NULL ||
(used = (int*) calloc(argc, sizeof(int))) == NULL)
err(1, NULL);
/* Pull out all network requests into nargv. */

View file

@ -378,7 +378,7 @@ static LRESULT WINAPI NOTEPAD_WndProc(HWND hWnd, UINT msg, WPARAM wParam,
case WM_DROPFILES:
{
WCHAR szFileName[MAX_PATH];
HANDLE hDrop = (HANDLE) wParam;
HDROP hDrop = (HDROP) wParam;
DragQueryFile(hDrop, 0, szFileName, SIZEOF(szFileName));
DragFinish(hDrop);
@ -529,8 +529,8 @@ static void HandleCommandLine(LPWSTR cmdline)
int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
{
MSG msg;
HACCEL hAccel;
WNDCLASSEX class;
HACCEL hAccel;
WNDCLASSEX wndclass;
static const WCHAR className[] = {'N','P','C','l','a','s','s',0};
static const WCHAR winName[] = {'N','o','t','e','p','a','d',0};
@ -543,19 +543,19 @@ int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
Globals.hInstance = hInstance;
LoadSettings();
ZeroMemory(&class, sizeof(class));
class.cbSize = sizeof(class);
class.lpfnWndProc = NOTEPAD_WndProc;
class.hInstance = Globals.hInstance;
class.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_NPICON));
class.hCursor = LoadCursor(0, IDC_ARROW);
class.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
class.lpszMenuName = MAKEINTRESOURCE(MAIN_MENU);
class.lpszClassName = className;
class.hIconSm = (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDI_NPICON),
ZeroMemory(&wndclass, sizeof(wndclass));
wndclass.cbSize = sizeof(wndclass);
wndclass.lpfnWndProc = NOTEPAD_WndProc;
wndclass.hInstance = Globals.hInstance;
wndclass.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_NPICON));
wndclass.hCursor = LoadCursor(0, IDC_ARROW);
wndclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wndclass.lpszMenuName = MAKEINTRESOURCE(MAIN_MENU);
wndclass.lpszClassName = className;
wndclass.hIconSm = (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDI_NPICON),
IMAGE_ICON, 16, 16, 0);
if (!RegisterClassEx(&class)) return FALSE;
if (!RegisterClassEx(&wndclass)) return FALSE;
/* Setup windows */

View file

@ -41,30 +41,30 @@
typedef struct
{
HANDLE hInstance;
HWND hMainWnd;
HWND hFindReplaceDlg;
HWND hEdit;
HWND hStatusBar;
HFONT hFont; /* Font used by the edit control */
LOGFONT lfFont;
BOOL bWrapLongLines;
BOOL bShowStatusBar;
WCHAR szFindText[MAX_PATH];
WCHAR szReplaceText[MAX_PATH];
WCHAR szFileName[MAX_PATH];
WCHAR szFileTitle[MAX_PATH];
WCHAR szFilter[2 * MAX_STRING_LEN + 100];
WCHAR szMarginTop[MAX_PATH];
WCHAR szMarginBottom[MAX_PATH];
WCHAR szMarginLeft[MAX_PATH];
WCHAR szMarginRight[MAX_PATH];
WCHAR szHeader[MAX_PATH];
WCHAR szFooter[MAX_PATH];
WCHAR szStatusBarLine[MAX_PATH];
WCHAR szStatusBarCol[MAX_PATH];
int iEncoding;
int iEoln;
HINSTANCE hInstance;
HWND hMainWnd;
HWND hFindReplaceDlg;
HWND hEdit;
HWND hStatusBar;
HFONT hFont; /* Font used by the edit control */
LOGFONT lfFont;
BOOL bWrapLongLines;
BOOL bShowStatusBar;
WCHAR szFindText[MAX_PATH];
WCHAR szReplaceText[MAX_PATH];
WCHAR szFileName[MAX_PATH];
WCHAR szFileTitle[MAX_PATH];
WCHAR szFilter[2 * MAX_STRING_LEN + 100];
WCHAR szMarginTop[MAX_PATH];
WCHAR szMarginBottom[MAX_PATH];
WCHAR szMarginLeft[MAX_PATH];
WCHAR szMarginRight[MAX_PATH];
WCHAR szHeader[MAX_PATH];
WCHAR szFooter[MAX_PATH];
WCHAR szStatusBarLine[MAX_PATH];
WCHAR szStatusBarCol[MAX_PATH];
int iEncoding;
int iEoln;
FINDREPLACE find;
} NOTEPAD_GLOBALS;

View file

@ -245,12 +245,12 @@ int main( int argc, char **argv )
WCHAR **argvW;
int i, j, Ret = 1;
if ((argvW = malloc(argc * sizeof(WCHAR*))))
if ((argvW = (WCHAR**) malloc(argc * sizeof(WCHAR*))))
{
/* convert the arguments */
for (i = 0, j = 0; i < argc; i++)
{
if (!(argvW[i] = malloc((strlen(argv[i]) + 1) * sizeof(WCHAR))))
if (!(argvW[i] = (WCHAR*) malloc((strlen(argv[i]) + 1) * sizeof(WCHAR))))
{
j++;
}

View file

@ -20,7 +20,7 @@ AboutDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
case WM_INITDIALOG:
hIcon = LoadImage(hInstance,
hIcon = (HICON) LoadImage(hInstance,
MAKEINTRESOURCE(IDI_SM_ICON),
IMAGE_ICON,
16,

View file

@ -92,7 +92,7 @@ GetDataFromDialog(PCREATE_DATA Data)
iLen = GetWindowTextLength(hwnd);
if (iLen != 0)
{
Data->ServiceName = HeapAlloc(ProcessHeap,
Data->ServiceName = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(iLen+1) * sizeof(TCHAR));
if (Data->ServiceName != NULL)
@ -122,7 +122,7 @@ GetDataFromDialog(PCREATE_DATA Data)
iLen = GetWindowTextLength(hwnd);
if (iLen != 0)
{
Data->DisplayName = HeapAlloc(ProcessHeap,
Data->DisplayName = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(iLen+1) * sizeof(TCHAR));
if (Data->DisplayName != NULL)
@ -152,7 +152,7 @@ GetDataFromDialog(PCREATE_DATA Data)
iLen = GetWindowTextLength(hwnd);
if (iLen != 0)
{
Data->BinPath = HeapAlloc(ProcessHeap,
Data->BinPath = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(iLen+1) * sizeof(TCHAR));
if (Data->BinPath != NULL)
@ -182,7 +182,7 @@ GetDataFromDialog(PCREATE_DATA Data)
iLen = GetWindowTextLength(hwnd);
if (iLen != 0)
{
Data->Description = HeapAlloc(ProcessHeap,
Data->Description = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(iLen+1) * sizeof(TCHAR));
if (Data->Description != NULL)
@ -203,7 +203,7 @@ GetDataFromDialog(PCREATE_DATA Data)
iLen = GetWindowTextLength(hwnd);
if (iLen != 0)
{
Data->Options = HeapAlloc(ProcessHeap,
Data->Options = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(iLen+1) * sizeof(TCHAR));
if (Data->Options != NULL)
@ -263,7 +263,7 @@ CreateHelpDialogProc(HWND hDlg,
{
case WM_INITDIALOG:
{
hIcon = LoadImage(hInstance,
hIcon = (HICON) LoadImage(hInstance,
MAKEINTRESOURCE(IDI_SM_ICON),
IMAGE_ICON,
16,
@ -318,7 +318,7 @@ CreateDialogProc(HWND hDlg,
{
case WM_INITDIALOG:
{
hIcon = LoadImage(hInstance,
hIcon = (HICON) LoadImage(hInstance,
MAKEINTRESOURCE(IDI_SM_ICON),
IMAGE_ICON,
16,
@ -340,7 +340,7 @@ CreateDialogProc(HWND hDlg,
{
PCREATE_DATA Data;
Data = HeapAlloc(ProcessHeap,
Data = (PCREATE_DATA) HeapAlloc(ProcessHeap,
HEAP_ZERO_MEMORY,
sizeof(CREATE_DATA));
if (Data != NULL)

View file

@ -71,7 +71,7 @@ DeleteDialogProc(HWND hDlg,
{
Info = (PMAIN_WND_INFO)lParam;
hIcon = LoadImage(hInstance,
hIcon = (HICON) LoadImage(hInstance,
MAKEINTRESOURCE(IDI_SM_ICON),
IMAGE_ICON,
16,

View file

@ -523,7 +523,7 @@ MainWndCommand(PMAIN_WND_INFO Info,
{
PPROP_DLG_INFO PropSheet;
PropSheet = HeapAlloc(ProcessHeap,
PropSheet = (PROP_DLG_INFO*) HeapAlloc(ProcessHeap,
HEAP_ZERO_MEMORY,
sizeof(PROP_DLG_INFO));
if (PropSheet != NULL)
@ -998,7 +998,7 @@ CreateMainWindow(LPCTSTR lpCaption,
PMAIN_WND_INFO Info;
HWND hMainWnd = NULL;
Info = HeapAlloc(ProcessHeap,
Info = (MAIN_WND_INFO*) HeapAlloc(ProcessHeap,
HEAP_ZERO_MEMORY,
sizeof(MAIN_WND_INFO));

View file

@ -28,7 +28,7 @@ LengthOfStrResource(IN HINSTANCE hInst,
/* Find the string table block */
if ((hrSrc = FindResourceW(hInst, lpName, (LPWSTR)RT_STRING)) &&
(hRes = LoadResource(hInst, hrSrc)) &&
(lpStr = LockResource(hRes)))
(lpStr = (WCHAR*) LockResource(hRes)))
{
UINT x;
@ -86,7 +86,7 @@ LoadAndFormatString(IN HINSTANCE hInstance,
uID) > 0)
{
va_start(lArgs, lpTarget);
/* let's use FormatMessage to format it because it has the ability to allocate
/* let's use Format to format it because it has the ability to allocate
memory automatically */
Ret = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING,
lpFormat,
@ -203,7 +203,7 @@ VOID GetError(VOID)
0,
NULL );
MessageBox(NULL, lpMsgBuf, _T("Error!"), MB_OK | MB_ICONERROR);
MessageBox(NULL, (LPCTSTR) lpMsgBuf, _T("Error!"), MB_OK | MB_ICONERROR);
LocalFree(lpMsgBuf);
}
@ -237,7 +237,7 @@ InitImageList(UINT StartResource,
/* Add all icons to the image list */
for (i = StartResource; i <= EndResource; i++)
{
hBitmap = LoadImage(hInstance,
hBitmap = (HBITMAP) LoadImage(hInstance,
MAKEINTRESOURCE(i),
IMAGE_BITMAP,
Width,

View file

@ -68,7 +68,7 @@ ClearMixerCache(PSND_MIXER Mixer)
PSND_MIXER
SndMixerCreate(HWND hWndNotification)
{
PSND_MIXER Mixer = HeapAlloc(GetProcessHeap(),
PSND_MIXER Mixer = (PSND_MIXER) HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY,
sizeof(SND_MIXER));
if (Mixer != NULL)
@ -115,7 +115,7 @@ SndMixerQueryControls(PSND_MIXER Mixer,
{
if (LineInfo->cControls > 0)
{
*Controls = HeapAlloc(GetProcessHeap(),
*Controls = (MIXERCONTROL*) HeapAlloc(GetProcessHeap(),
0,
LineInfo->cControls * sizeof(MIXERCONTROL));
if (*Controls != NULL)
@ -128,7 +128,7 @@ SndMixerQueryControls(PSND_MIXER Mixer,
LineControls.dwLineID = LineInfo->dwLineID;
LineControls.cControls = LineInfo->cControls;
LineControls.cbmxctrl = sizeof(MIXERCONTROL);
LineControls.pamxctrl = (PVOID)(*Controls);
LineControls.pamxctrl = (MIXERCONTROL*)(*Controls);
Result = mixerGetLineControls((HMIXEROBJ)Mixer->hmx,
&LineControls,
@ -191,9 +191,9 @@ SndMixerQueryConnections(PSND_MIXER Mixer,
{
LPMIXERCONTROL Controls;
PSND_MIXER_CONNECTION Con;
DPRINT("++ Source: %ws\n", LineInfo.szName);
DispControls = 0;
if (!SndMixerQueryControls(Mixer,
@ -206,7 +206,7 @@ SndMixerQueryConnections(PSND_MIXER Mixer,
break;
}
Con = HeapAlloc(GetProcessHeap(),
Con = (SND_MIXER_CONNECTION*) HeapAlloc(GetProcessHeap(),
0,
sizeof(SND_MIXER_CONNECTION));
if (Con != NULL)
@ -245,7 +245,7 @@ SndMixerQueryDestinations(PSND_MIXER Mixer)
{
PSND_MIXER_DESTINATION Line;
Line = HeapAlloc(GetProcessHeap(),
Line = (SND_MIXER_DESTINATION*) HeapAlloc(GetProcessHeap(),
HEAP_ZERO_MEMORY,
sizeof(SND_MIXER_DESTINATION));
if (Line != NULL)
@ -257,7 +257,7 @@ SndMixerQueryDestinations(PSND_MIXER Mixer)
MIXER_GETLINEINFOF_DESTINATION) == MMSYSERR_NOERROR)
{
DPRINT("+ Destination: %ws (0x%x, %d)\n", Line->Info.szName, Line->Info.dwLineID, Line->Info.dwComponentType);
if (!SndMixerQueryControls(Mixer,
&Line->DisplayControls,
&Line->Info,
@ -516,7 +516,7 @@ SndMixerEnumConnections(PSND_MIXER Mixer,
if (Line->Info.dwLineID == LineID)
{
PSND_MIXER_CONNECTION Connection;
if (Line->DisplayControls != 0)
{
if (!EnumProc(Mixer,
@ -538,7 +538,7 @@ SndMixerEnumConnections(PSND_MIXER Mixer,
return FALSE;
}
}
return TRUE;
}
}
@ -560,7 +560,7 @@ SndMixerIsDisplayControl(PSND_MIXER Mixer,
return TRUE;
}
}
return FALSE;
}

View file

@ -36,7 +36,7 @@ InitEditWnd(PEDIT_WND_INFO Info)
return FALSE;
}
hfDefault = GetStockObject(DEFAULT_GUI_FONT);
hfDefault = (HFONT) GetStockObject(DEFAULT_GUI_FONT);
SendMessage(Info->hEdit,
WM_SETFONT,
(WPARAM)hfDefault,
@ -135,7 +135,7 @@ CreateEditWindow(struct _MAIN_WND_INFO *MainWnd,
PEDIT_WND_INFO Info;
HWND hWndEditor;
Info = HeapAlloc(ProcessHeap,
Info = (EDIT_WND_INFO*) HeapAlloc(ProcessHeap,
0,
sizeof(EDIT_WND_INFO));
if (Info != NULL)

View file

@ -578,7 +578,7 @@ CreateMainWindow(LPCTSTR lpCaption,
PMAIN_WND_INFO Info;
HWND hMainWnd = NULL;
Info = HeapAlloc(ProcessHeap,
Info = (MAIN_WND_INFO*) HeapAlloc(ProcessHeap,
0,
sizeof(MAIN_WND_INFO));
if (Info != NULL)

View file

@ -19,7 +19,7 @@ LengthOfStrResource(IN HINSTANCE hInst,
/* Find the string table block */
if ((hrSrc = FindResourceW(hInst, lpName, (LPWSTR)RT_STRING)) &&
(hRes = LoadResource(hInst, hrSrc)) &&
(lpStr = LockResource(hRes)))
(lpStr = (WCHAR*) LockResource(hRes)))
{
UINT x;
@ -197,7 +197,7 @@ VOID GetError(DWORD err)
0,
NULL );
MessageBox(NULL, lpMsgBuf, _T("Error!"), MB_OK | MB_ICONERROR);
MessageBox(NULL, (LPCTSTR) lpMsgBuf, _T("Error!"), MB_OK | MB_ICONERROR);
LocalFree(lpMsgBuf);
}

View file

@ -35,7 +35,7 @@ _tWinMain(HINSTANCE hThisInstance,
}
len = _tcslen(lpAppName) + _tcslen(lpVersion);
lpTitle = HeapAlloc(ProcessHeap,
lpTitle = (TCHAR*) HeapAlloc(ProcessHeap,
0,
(len + 2) * sizeof(TCHAR));