42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
//--------------------------------------------------------------------
|
|
// Microsoft OLE DB Test
|
|
//
|
|
// Copyright (C) 1995-2000 Microsoft Corporation
|
|
//
|
|
// @doc
|
|
//
|
|
// @module IDBBINDERPROPERTIES.H | Header file for IBindResource test module.
|
|
//
|
|
// @rev 01 | 08-03-98 | Microsoft | Created
|
|
//
|
|
|
|
#ifndef _IDBBINDERPROPERTIES_H_
|
|
#define _IDBBINDERPROPERTIES_H_
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Includes
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#include "oledb.h" // OLE DB Header Files
|
|
#include "oledberr.h"
|
|
#include "privlib.h" // Private Library
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
//Defines
|
|
//
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
#define SKIPTEST \
|
|
tResult = TEST_SKIPPED; \
|
|
goto CLEANUP;
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
//Enumerations
|
|
//
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#endif //_IDBBINDERPROPERTIES_H_
|