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.
|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1997.
//
// File: U P N P A T L . H
//
// Contents: Common includes for upnp ATL usage
//
// Notes:
//
// Author: jeffspr 15 Sep 1999
//
//----------------------------------------------------------------------------
#ifndef _UPNPATL_H_
#define _UPNPATL_H_
#pragma once
#include <atldef.h>
#include <atlbase.h>
extern CComModule _Module; #include <atlcom.h>
#pragma warning(disable : 4530) // disable warnings about exception handling
#include <vector>
#include <comdef.h>
using namespace std;
#endif // _UPNPATL_H_
|