Windows2003-3790/windows/advcore/duser/engine/winapi/winapi.h

58 lines
1.6 KiB
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
/***************************************************************************\
*
* File: WinAPI.h
*
* Description:
* This file provides a project-wide header that is included in all source
* files specific to this project. It is similar to a precompiled header,
* but is designed for more rapidly changing headers.
*
* The primary purpose of this file is to determine which DirectUser
* projects this project has direct access to instead of going through public
* API's. It is VERY IMPORTANT that this is as minimal as possible since
* adding a new project unnecessarily reduces the benefit of project
* partitioning.
*
*
* History:
* 1/18/2000: JStall: Created
*
* Copyright (C) 2000 by Microsoft Corporation. All rights reserved.
*
\***************************************************************************/
#if !defined(WINAPI__WinAPI_h__INCLUDED)
#define WINAPI__WinAPI_h__INCLUDED
#define GADGET_ENABLE_DX
#define GADGET_ENABLE_COM
#define GADGET_ENABLE_TRANSITIONS
#include <DUser.h>
#include <DUserBaseP.h>
#include <DUserObjectAPIP.h>
#include <DUserServicesP.h>
#include <DUserMsgP.h>
#include <DUserCoreP.h>
#include <DUserLavaP.h>
#include <DUserMotionP.h>
#include <DUserCtrlP.h>
#if DBG
#define PromptInvalid(comment) \
do \
{ \
if (IDebug_Prompt(GetDebug(), "Validation error:\r\n" comment, __FILE__, __LINE__, "DirectUser/WinAPI Notification")) \
AutoDebugBreak(); \
} while (0) \
#else // DBG
#define PromptInvalid(comment) ((void) 0)
#endif // DBG
#endif // WINAPI__WinAPI_h__INCLUDED