40 lines
816 B
C
40 lines
816 B
C
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Copyright (C) 1996, Microsoft Corporation.
|
||
|
//
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// File: ctolerpc.h
|
||
|
//
|
||
|
// Synopsis: Global include file for the ctolerpc project
|
||
|
//
|
||
|
// History: 31-Jul-96 MikeW Created
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef _CTOLERPC_H_
|
||
|
#define _CTOLERPC_H_
|
||
|
|
||
|
|
||
|
|
||
|
#include "KillWarn.h"
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <ole2.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#ifdef WIN16
|
||
|
#include <types16.h>
|
||
|
#endif
|
||
|
#include <tchar.h>
|
||
|
#include <direct.h>
|
||
|
|
||
|
#include "macport.h" // Macintosh-specific stuff
|
||
|
|
||
|
#include "oletypes.h" // Platform independent ole types
|
||
|
#include "olestr.h" // ctprintf and olestr functions
|
||
|
|
||
|
|
||
|
|
||
|
#endif // _CTOLERPC_H_
|