mirror of https://github.com/tongzx/nt5src
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.
27 lines
702 B
27 lines
702 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: Win32Sub.H
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//
|
|
// Header file for Win32 Sub parsers.
|
|
// Includes all the needed Win32 specific header files.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __WIN32SUB_H
|
|
#define __WIN32SUB_H
|
|
|
|
#pragma comment(lib, "win32rt.lib")
|
|
|
|
#include "..\win32rt\f32base.h"
|
|
#include "..\win32rt\resbase.h"
|
|
#include "..\win32rt\reshead.h"
|
|
#include "..\win32rt\w32types.h"
|
|
#include "..\win32rt\win32rt.h"
|
|
#include "..\win32rt\win32iid.h"
|
|
#include "..\win32rt\win32pid.h"
|
|
|
|
#endif //__WIN32SUB_H
|
|
|