mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
Fixed warnings.
This commit is contained in:
parent
141966b052
commit
e969027104
3 changed files with 18 additions and 13 deletions
|
@ -49,7 +49,6 @@ static void User_destroy_own_window(IDirectDrawSurfaceImpl* This);
|
|||
static DWORD CALLBACK User_update_thread(LPVOID);
|
||||
#endif
|
||||
static void User_copy_to_screen(IDirectDrawSurfaceImpl* This, LPCRECT rc);
|
||||
static void User_copy_from_screen(IDirectDrawSurfaceImpl* This, LPCRECT rc);
|
||||
|
||||
static HWND get_display_window(IDirectDrawSurfaceImpl* This, LPPOINT pt);
|
||||
|
||||
|
@ -597,6 +596,7 @@ static void User_copy_to_screen(IDirectDrawSurfaceImpl* This, LPCRECT rc)
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void User_copy_from_screen(IDirectDrawSurfaceImpl* This, LPCRECT rc)
|
||||
{
|
||||
if (This->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
|
||||
|
@ -623,6 +623,7 @@ static void User_copy_from_screen(IDirectDrawSurfaceImpl* This, LPCRECT rc)
|
|||
ReleaseDC(hDisplayWnd, hDisplayDC);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
static ICOM_VTABLE(IDirectDrawSurface7) User_IDirectDrawSurface7_VTable =
|
||||
{
|
||||
|
|
|
@ -212,16 +212,6 @@ static const char *wodPlayerCmdString[] = {
|
|||
"WINE_WM_CLOSING",
|
||||
};
|
||||
|
||||
static char *nas_event_types[] = {
|
||||
"Undefined",
|
||||
"Undefined",
|
||||
"ElementNotify",
|
||||
"GrabNotify",
|
||||
"MonitorNotify",
|
||||
"BucketNotify",
|
||||
"DeviceNotify"
|
||||
};
|
||||
|
||||
static char *nas_elementnotify_kinds[] = {
|
||||
"LowWater",
|
||||
"HighWater",
|
||||
|
@ -259,11 +249,24 @@ static char* nas_elementnotify_kind(unsigned int kind)
|
|||
}
|
||||
|
||||
|
||||
static char* nas_event_type(unsigned int type)
|
||||
#if 0
|
||||
static const char* nas_event_type(unsigned int type)
|
||||
{
|
||||
static const char * const nas_event_types[] =
|
||||
{
|
||||
"Undefined",
|
||||
"Undefined",
|
||||
"ElementNotify",
|
||||
"GrabNotify",
|
||||
"MonitorNotify",
|
||||
"BucketNotify",
|
||||
"DeviceNotify"
|
||||
};
|
||||
|
||||
if (type > 6) type = 0;
|
||||
return nas_event_types[type];
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
static char* nas_state(unsigned int state)
|
||||
|
|
|
@ -641,6 +641,7 @@ static BOOL GRPFILE_DoWriteGroupFile(HFILE file, PROGGROUP *group)
|
|||
}
|
||||
|
||||
/* Icons */
|
||||
#if 0 /* FIXME: this is broken anyway */
|
||||
hProgram = group->hPrograms;
|
||||
while(hProgram)
|
||||
{
|
||||
|
@ -649,7 +650,6 @@ static BOOL GRPFILE_DoWriteGroupFile(HFILE file, PROGGROUP *group)
|
|||
LPVOID XorBits, AndBits;
|
||||
INT sizeXor = iconinfo->nHeight * iconinfo->nWidthBytes;
|
||||
INT sizeAnd = iconinfo->nHeight * ((iconinfo->nWidth + 15) / 16 * 2);
|
||||
/* FIXME: this is broken anyway */
|
||||
/* DumpIcon16(LocalLock(program->hIcon), 0, &XorBits, &AndBits);*/
|
||||
|
||||
PUT_SHORT(buffer, 0, iconinfo->ptHotSpot.x);
|
||||
|
@ -666,6 +666,7 @@ static BOOL GRPFILE_DoWriteGroupFile(HFILE file, PROGGROUP *group)
|
|||
|
||||
hProgram = program->hNext;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (need_extension)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue