blob: c97f3ab85a330c194583b8a43c7376eeec224601 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//**********************************************************************
// File name: pre.h
//
// Used for precompiled headers
//
// Copyright (c) 1993 Microsoft Corporation. All rights reserved.
//**********************************************************************
#if !defined( _PRE_H_)
#define _PRE_H_
#include <windows.h>
#include <ole2.h>
#include <ole2ui.h>
#include <assert.h>
#include <string.h>
#include "simpdnd.h"
#include "resource.h"
#include <ole2ver.h>
extern "C" void TestDebugOut(LPSTR psz);
#endif
|