Windows-Server-2003/net/jet500/xjet/inc/_vtmgr.h

45 lines
902 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/***********************************************************************
* Microsoft Jet
*
* Microsoft Confidential. Copyright 1991-1992 Microsoft Corporation.
*
* Component: VT Dispatcher
*
* File: _vtmgr.h
*
* File Comments:
*
* Internal header file for VT dispatcher.
*
* Revision History:
*
* [0] 10-Nov-90 richards Added this header
*
***********************************************************************/
#ifndef _VTMGR_H
#define _VTMGR_H
#include "vtapi.h"
#ifdef DAYTONA
#define tableidMax 2048
#else
#define tableidMax 8192
#endif
typedef struct _VTDEF
{
JET_VSESID vsesid; /* Session id for VT provider. */
JET_VTID vtid; /* Tableid for VT provider. */
const VTFNDEF *pvtfndef; /* VT function dispatch table. */
#ifdef DEBUG
BOOL fExported; /* Returned by an API call? */
#endif
} VTDEF;
extern VTDEF EXPORT rgvtdef[tableidMax];
#endif /* !_VTMGR_H */