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.
36 lines
863 B
36 lines
863 B
/*
|
|
* _ X M L . H
|
|
*
|
|
* XML document processing
|
|
*
|
|
* Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
|
|
*/
|
|
|
|
#pragma warning(disable:4100) // unref formal parameter
|
|
#pragma warning(disable:4710) // unexpanded c++ methods
|
|
|
|
|
|
// Define _WINSOCKAPI_ to keep windows.h from including winsock.h,
|
|
// whose declarations would be redefined in winsock2.h,
|
|
// which is included by iisextp.h,
|
|
// which we include below!
|
|
//
|
|
#define _WINSOCKAPI_
|
|
#include <windows.h>
|
|
|
|
#include <oledberr.h>
|
|
|
|
#include <ex\xml.h>
|
|
#include <ex\xprs.h>
|
|
#include <ex\calcom.h>
|
|
|
|
#include <xemit.h>
|
|
#include <xmeta.h>
|
|
#include <xsearch.h>
|
|
|
|
#include "chartype.h"
|
|
|
|
// Helper Macros -------------------------------------------------------------
|
|
//
|
|
#define CElems(_rg) (sizeof(_rg)/sizeof(_rg[0]))
|
|
#define CbSizeWsz(_cch) (((_cch) + 1) * sizeof(WCHAR))
|