You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
673 B
26 lines
673 B
/******************************Module*Header*******************************\
|
|
* Module Name: usermode.h
|
|
*
|
|
* Client side stubs for any user-mode GDI-Plus thunks.
|
|
*
|
|
* Created: 2-May-1998
|
|
* Author: J. Andrew Goossen [andrewgo]
|
|
*
|
|
* Copyright (c) 1998-1999 Microsoft Corporation
|
|
\**************************************************************************/
|
|
|
|
#define InitializeLpkHooks(a)
|
|
|
|
#if DBG
|
|
VOID DoRip(PSZ psz);
|
|
#define PLUSRIP DoRip
|
|
#else
|
|
#define PLUSRIP
|
|
#endif
|
|
|
|
#define GetDC(a) \
|
|
(PLUSRIP("GetDC"), 0)
|
|
#define ReleaseDC(a, b) \
|
|
(PLUSRIP("ReleaseDC"), 0)
|
|
#define UserRealizePalette(a) \
|
|
(PLUSRIP("UserRealizePalette"), 0)
|