Source code of Windows XP (NT5)
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.
|
|
/***************************************************************************
* * Copyright (C) 2001-2002 Microsoft Corporation. All Rights Reserved. * * File: dpnhpasti.h * * Content: DPNHPAST master internal header file. * * History: * Date By Reason * ======== ======== ========= * 04/16/01 VanceO Split DPNATHLP into DPNHUPNP and DPNHPAST. * ***************************************************************************/
#ifndef __DPNHPASTI_H__
#define __DPNHPASTI_H__
//
// Build configuration include
//
#include "dpnbuild.h"
//
// Public includes
//
#define INCL_WINSOCK_API_TYPEDEFS 1
#include <winsock2.h>
#include <ws2tcpip.h>
#include <windows.h>
#include <ole2.h>
#include <wincrypt.h> // for random numbers
#include <mmsystem.h> // NT BUILD requires this for timeGetTime
#include <iphlpapi.h>
#include <tchar.h>
//
// DirectPlay public includes
//
#include "dpnathlp.h"
//
// DirectPlay private includes
//
#include "dndbg.h"
#include "osind.h"
#include "classbilink.h"
#include "creg.h"
#include "createin.h"
#include "strutils.h"
//
// DirectPlayNATHelp private includes
//
#undef DPF_SUBCOMP
#define DPF_SUBCOMP DN_SUBCOMP_NATHELP
#include "dpnhpastlocals.h"
#include "pastmsgs.h"
#include "dpnhpastdevice.h"
#include "dpnhpastregport.h"
#include "dpnhpastcachemap.h"
#include "dpnhpastintfobj.h"
#endif // __DPNHPASTI_H__
|