blob: cbcf45ede5c9ff7e14b8814dd73c30815439447a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1994 - 1994.
//
// File: oledbtyp.h
//
// Contents: Necessary type definitions for OLD-DB interfaces
//
// Notes: This file works around the fact that not everyone yet
// has oleaut.h.
// We just conditionally include the right type definitions
// for whatever platform we're running on.
//
// History: 25 Aug 94 Alanw Created
//
//+---------------------------------------------------------------------------
#if !defined( _VARNT_DEFINED )
#include <oaidl.h>
#endif //!defined( _VARNT_DEFINED )
|