mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
Improve macro for stubs inside of ddraw. Thx to w3seek.
svn path=/trunk/; revision=18857
This commit is contained in:
@@ -93,6 +93,15 @@ VOID Hel_DirectDraw_Release (LPDIRECTDRAW7 iface);
|
||||
|
||||
/*********** Macros ***********/
|
||||
|
||||
#define DX_STUB return DDERR_UNSUPPORTED;
|
||||
#define DX_STUB \
|
||||
static BOOL firstcall = TRUE; \
|
||||
if (firstcall) \
|
||||
{ \
|
||||
char buffer[1024]; \
|
||||
sprintf ( buffer, "Function %s is not implemented yet (%s:%d)\n", __FUNCTION__,__FILE__,__LINE__ ); \
|
||||
OutputDebugStringA(buffer); \
|
||||
firstcall = FALSE; \
|
||||
} \
|
||||
return DDERR_UNSUPPORTED;
|
||||
|
||||
#endif /* __DDRAW_PRIVATE */
|
||||
|
||||
Reference in New Issue
Block a user