tdbcInt.h 934 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * tdbcInt.h --
  3. *
  4. * Declarations of the public API for Tcl DataBase Connectivity (TDBC)
  5. *
  6. * Copyright (c) 2006 by Kevin B. Kenny
  7. *
  8. * See the file "license.terms" for information on usage and redistribution of
  9. * this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10. *
  11. * RCS: @(#) $Id$
  12. *
  13. *-----------------------------------------------------------------------------
  14. */
  15. #ifndef TDBCINT_H_INCLUDED
  16. #define TDBCINT_H_INCLUDED 1
  17. #include "tdbc.h"
  18. /*
  19. * Used to tag functions that are only to be visible within the module being
  20. * built and not outside it (where this is supported by the linker).
  21. */
  22. #ifndef MODULE_SCOPE
  23. # ifdef __cplusplus
  24. # define MODULE_SCOPE extern "C"
  25. # else
  26. # define MODULE_SCOPE extern
  27. # endif
  28. #endif
  29. /*
  30. * Linkage to procedures not exported from this module
  31. */
  32. MODULE_SCOPE int TdbcTokenizeObjCmd(ClientData clientData, Tcl_Interp* interp,
  33. int objc, Tcl_Obj *const objv[]);
  34. #endif