mirror of https://github.com/lianthony/NT4.0
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.
47 lines
744 B
47 lines
744 B
/**********************************************************************/
|
|
/** Microsoft Windows NT **/
|
|
/** Copyright(c) Microsoft Corp., 1995 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
gopherp.h
|
|
|
|
Master include file.
|
|
|
|
*/
|
|
|
|
|
|
#ifndef _GOPHERP_H_
|
|
#define _GOPHERP_H_
|
|
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
#include <windows.h>
|
|
|
|
#if !defined(RC_INVOKED)
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
|
|
#include <wininet.h>
|
|
#include <windowsx.h>
|
|
#endif // !RC_INVOKED
|
|
|
|
|
|
|
|
//
|
|
// Local include files.
|
|
//
|
|
|
|
#include "cons.h"
|
|
#include "type.h"
|
|
#include "data.h"
|
|
#include "proc.h"
|
|
|
|
|
|
#endif // _GOPHERP_H_
|
|
|