Commit 33af3c5c authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

janitorial: Use the C standard for multiline strings.

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