55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
//-----------------------------------------------------------------------------------
|
|
// Microsoft OLE DB Provider For Oracle
|
|
// (C) Copyright 1998 By Microsoft Corporation.
|
|
//
|
|
// @doc
|
|
//
|
|
// @module GUIDS.H | Internal GUIDS
|
|
//
|
|
// $Header: Y:/admin/bcb/rtl/include/windows/msdaora.h_v 9.1 05 Oct 1999 18:24:42 jpeters $
|
|
//
|
|
|
|
#ifndef __MSDAORAGUIDS_DEFINED__
|
|
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
|
|
#define __MSDAORAGUIDS_DEFINED__
|
|
|
|
#ifdef DBINITCONSTANTS
|
|
|
|
EXTERN_C const CLSID CLSID_MSDAORA = {0xE8CC4CBE,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
|
|
EXTERN_C const CLSID CLSID_MSDAORA_ERROR = {0xE8CC4CBF,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
|
|
|
|
#else //DBINITCONSTANTS
|
|
|
|
EXTERN_C const CLSID CLSID_MSDAORA;
|
|
EXTERN_C const CLSID CLSID_MSDAORA_ERROR;
|
|
|
|
#endif //DBINITCONSTANTS
|
|
|
|
class DECLSPEC_UUID("E8CC4CBE-FDFF-11D0-B865-00A0C9081C1D")
|
|
MSDAORA;
|
|
|
|
class DECLSPEC_UUID("E8CC4CBF-FDFF-11D0-B865-00A0C9081C1D")
|
|
MSDAORA_ERROR;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
// MSDAORA specific properties
|
|
//
|
|
#ifdef DBINITCONSTANTS
|
|
|
|
extern const GUID OLEDBDECLSPEC DBPROPSET_MSDAORA_ROWSET = {0xE8CC4CBD,0xFDFF,0x11D0,{0xB8,0x65,0x00,0xA0,0xC9,0x08,0x1C,0x1D}};
|
|
|
|
#else // !DBINITCONSTANTS
|
|
|
|
extern const GUID DBPROPSET_MSDAORA_ROWSET;
|
|
|
|
#endif // DBINITCONSTANTS
|
|
|
|
// PropIds under DBPROPSET_MSDAORA_ROWSET
|
|
#define DBPROP_MSDAORA_DETERMINEKEYCOLUMNS 1
|
|
|
|
|
|
#pragma option pop /*P_O_Pop*/
|
|
#endif // __MSDAORAGUIDS_DEFINED__
|