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.
46 lines
951 B
46 lines
951 B
// @doc
|
|
/**********************************************************************
|
|
*
|
|
* @module stdhdrs.h |
|
|
*
|
|
* Pulls in all the headers needed by most of the modules in the ControlItemCollection library.
|
|
*
|
|
* History
|
|
* ----------------------------------------------------------
|
|
* Mitchell S. Dernis Original
|
|
*
|
|
* (c) 1986-1998 Microsoft Corporation. All right reserved.
|
|
*
|
|
*
|
|
**********************************************************************/
|
|
#ifdef COMPILE_FOR_WDM_KERNEL_MODE
|
|
extern "C"
|
|
{
|
|
#include <wdm.h>
|
|
#include <winerror.h>
|
|
#include <Hidpddi.h>
|
|
}
|
|
#else
|
|
#include <windows.h>
|
|
#include <crtdbg.h>
|
|
extern "C"
|
|
{
|
|
#pragma warning( disable : 4201 )
|
|
#include "Hidsdi.h"
|
|
#pragma warning( default : 4201 )
|
|
}
|
|
|
|
#endif
|
|
|
|
#include "DualMode.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include "debug.h"
|
|
DECLARE_MODULE_DEBUG_LEVEL((DBG_WARN|DBG_ERROR|DBG_CRITICAL) );
|
|
}
|
|
|
|
#include "ListAsArray.h"
|
|
#include "ControlItemCollection.h"
|
|
|
|
|