Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
946 B

  1. /***********************************************************************
  2. * Microsoft Jet
  3. *
  4. * Microsoft Confidential. Copyright 1991-1992 Microsoft Corporation.
  5. *
  6. * Component: VT Dispatcher
  7. *
  8. * File: _vtmgr.h
  9. *
  10. * File Comments:
  11. *
  12. * Internal header file for VT dispatcher.
  13. *
  14. * Revision History:
  15. *
  16. * [0] 10-Nov-90 richards Added this header
  17. *
  18. ***********************************************************************/
  19. #ifndef _VTMGR_H
  20. #define _VTMGR_H
  21. #include "vtapi.h"
  22. #ifdef DAYTONA
  23. #define tableidMax 2048
  24. #else
  25. #define tableidMax 8192
  26. #endif
  27. typedef struct _VTDEF
  28. {
  29. JET_VSESID vsesid; /* Session id for VT provider. */
  30. JET_VTID vtid; /* Tableid for VT provider. */
  31. const VTFNDEF *pvtfndef; /* VT function dispatch table. */
  32. #ifdef DEBUG
  33. BOOL fExported; /* Returned by an API call? */
  34. #endif
  35. } VTDEF;
  36. extern VTDEF EXPORT rgvtdef[tableidMax];
  37. #endif /* !_VTMGR_H */
  38.