janitorial: Use the C standard for multiline strings.
This commit is contained in:
parent
31215ae85a
commit
33af3c5c83
|
@ -363,8 +363,8 @@ HFDI __cdecl FDICreate(
|
|||
{
|
||||
HFDI rv;
|
||||
|
||||
TRACE("(pfnalloc == ^%p, pfnfree == ^%p, pfnopen == ^%p, pfnread == ^%p, pfnwrite == ^%p, \
|
||||
pfnclose == ^%p, pfnseek == ^%p, cpuType == %d, perf == ^%p)\n",
|
||||
TRACE("(pfnalloc == ^%p, pfnfree == ^%p, pfnopen == ^%p, pfnread == ^%p, pfnwrite == ^%p, "
|
||||
"pfnclose == ^%p, pfnseek == ^%p, cpuType == %d, perf == ^%p)\n",
|
||||
pfnalloc, pfnfree, pfnopen, pfnread, pfnwrite, pfnclose, pfnseek,
|
||||
cpuType, perf);
|
||||
|
||||
|
@ -2450,8 +2450,8 @@ BOOL __cdecl FDICopy(
|
|||
fdi_decomp_state _decomp_state;
|
||||
fdi_decomp_state *decomp_state = &_decomp_state;
|
||||
|
||||
TRACE("(hfdi == ^%p, pszCabinet == ^%p, pszCabPath == ^%p, flags == %0d, \
|
||||
pfnfdin == ^%p, pfnfdid == ^%p, pvUser == ^%p)\n",
|
||||
TRACE("(hfdi == ^%p, pszCabinet == ^%p, pszCabPath == ^%p, flags == %0d, "
|
||||
"pfnfdin == ^%p, pfnfdid == ^%p, pvUser == ^%p)\n",
|
||||
hfdi, pszCabinet, pszCabPath, flags, pfnfdin, pfnfdid, pvUser);
|
||||
|
||||
if (!REALLY_IS_FDI(hfdi)) {
|
||||
|
|
|
@ -322,8 +322,8 @@ IDirectDrawImpl_SetupFullscreenWindow(IDirectDrawImpl *This,
|
|||
TRACE("(%p): Setting up window %p for exclusive mode\n", This, window);
|
||||
if( (This->style != 0) && (This->exStyle != 0) )
|
||||
{
|
||||
ERR("(%p) Want to change the window parameters of HWND %p, but \
|
||||
another style is stored for restauration afterwards\n", This, window);
|
||||
ERR("(%p) Want to change the window parameters of HWND %p, but "
|
||||
"another style is stored for restauration afterwards\n", This, window);
|
||||
}
|
||||
|
||||
/* Get the parameters and save them */
|
||||
|
@ -2259,8 +2259,8 @@ IDirectDrawImpl_CreateSurface(IDirectDraw7 *iface,
|
|||
if( (rect.right - rect.left) <= 1 ||
|
||||
(rect.bottom - rect.top) <= 1 )
|
||||
{
|
||||
FIXME("Wanted to get surface dimensions from window %p, but it has only \
|
||||
a size of %dx%d. Using full screen dimensions\n",
|
||||
FIXME("Wanted to get surface dimensions from window %p, but it has only "
|
||||
"a size of %dx%d. Using full screen dimensions\n",
|
||||
window, rect.right - rect.left, rect.bottom - rect.top);
|
||||
}
|
||||
else
|
||||
|
|
|
@ -526,8 +526,8 @@ DWORD WINAPI RegisterTasklist (DWORD x)
|
|||
*/
|
||||
HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
|
||||
{
|
||||
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n\
|
||||
returns a fake device notification handle!\n", hnd,notifyfilter,flags );
|
||||
FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
|
||||
"\treturns a fake device notification handle!\n", hnd,notifyfilter,flags );
|
||||
return (HDEVNOTIFY) 0xcafecafe;
|
||||
}
|
||||
|
||||
|
|
|
@ -860,17 +860,17 @@ static HRESULT WINAPI IWineD3DDeviceImpl_CreateSurface(IWineD3DDevice *iface, U
|
|||
switch(Pool) {
|
||||
case WINED3DPOOL_SCRATCH:
|
||||
if(!Lockable)
|
||||
FIXME("Create surface called with a pool of SCRATCH and a Lockable of FALSE \
|
||||
which are mutually exclusive, setting lockable to true\n");
|
||||
FIXME("Create surface called with a pool of SCRATCH and a Lockable of FALSE "
|
||||
"which are mutually exclusive, setting lockable to TRUE\n");
|
||||
Lockable = TRUE;
|
||||
break;
|
||||
case WINED3DPOOL_SYSTEMMEM:
|
||||
if(!Lockable) FIXME("Create surface called with a pool of SYSTEMMEM and a Lockable of FALSE, \
|
||||
this is acceptable but unexpected (I can't know how the surface can be usable!)\n");
|
||||
if(!Lockable) FIXME("Create surface called with a pool of SYSTEMMEM and a Lockable of FALSE, "
|
||||
"this is acceptable but unexpected (I can't know how the surface can be usable!)\n");
|
||||
case WINED3DPOOL_MANAGED:
|
||||
if(Usage == WINED3DUSAGE_DYNAMIC) FIXME("Create surface called with a pool of MANAGED and a \
|
||||
Usage of DYNAMIC which are mutually exclusive, not doing \
|
||||
anything just telling you.\n");
|
||||
if(Usage == WINED3DUSAGE_DYNAMIC) FIXME("Create surface called with a pool of MANAGED and a "
|
||||
"Usage of DYNAMIC which are mutually exclusive, not doing "
|
||||
"anything just telling you.\n");
|
||||
break;
|
||||
case WINED3DPOOL_DEFAULT: /*TODO: Create offscreen plain can cause this check to fail..., find out if it should */
|
||||
if(!(Usage & WINED3DUSAGE_DYNAMIC) && !(Usage & WINED3DUSAGE_RENDERTARGET)
|
||||
|
|
|
@ -601,9 +601,9 @@ state_stencil(DWORD state, IWineD3DStateBlockImpl *stateblock) {
|
|||
if( stateblock->set.renderState[WINED3DRS_CCW_STENCILPASS] )
|
||||
stencilPass_ccw = StencilOp(stateblock->renderState[WINED3DRS_CCW_STENCILPASS]);
|
||||
|
||||
TRACE("(onesided %d, twosided %d, ref %x, mask %x, \
|
||||
GL_FRONT: func: %x, fail %x, zfail %x, zpass %x \
|
||||
GL_BACK: func: %x, fail %x, zfail %x, zpass %x )\n",
|
||||
TRACE("(onesided %d, twosided %d, ref %x, mask %x, "
|
||||
"GL_FRONT: func: %x, fail %x, zfail %x, zpass %x "
|
||||
"GL_BACK: func: %x, fail %x, zfail %x, zpass %x )\n",
|
||||
onesided_enable, twosided_enable, ref, mask,
|
||||
func, stencilFail, depthFail, stencilPass,
|
||||
func_ccw, stencilFail_ccw, depthFail_ccw, stencilPass_ccw);
|
||||
|
|
|
@ -555,15 +555,15 @@ run_tests (char *logname)
|
|||
static void
|
||||
usage (void)
|
||||
{
|
||||
fprintf (stderr, "\
|
||||
Usage: winetest [OPTION]...\n\n\
|
||||
-c console mode, no GUI\n\
|
||||
-e preserve the environment\n\
|
||||
-h print this message and exit\n\
|
||||
-q quiet mode, no output at all\n\
|
||||
-o FILE put report into FILE, do not submit\n\
|
||||
-s FILE submit FILE, do not run tests\n\
|
||||
-t TAG include TAG of characters [-.0-9a-zA-Z] in the report\n");
|
||||
fprintf (stderr,
|
||||
"Usage: winetest [OPTION]...\n\n"
|
||||
" -c console mode, no GUI\n"
|
||||
" -e preserve the environment\n"
|
||||
" -h print this message and exit\n"
|
||||
" -q quiet mode, no output at all\n"
|
||||
" -o FILE put report into FILE, do not submit\n"
|
||||
" -s FILE submit FILE, do not run tests\n"
|
||||
" -t TAG include TAG of characters [-.0-9a-zA-Z] in the report\n");
|
||||
}
|
||||
|
||||
int WINAPI WinMain (HINSTANCE hInst, HINSTANCE hPrevInst,
|
||||
|
|
Loading…
Reference in New Issue