mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 19:40:12 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
80
msys2/usr/include/tdbc.h
Normal file
80
msys2/usr/include/tdbc.h
Normal file
|
@ -0,0 +1,80 @@
|
|||
/*
|
||||
* tdbc.h --
|
||||
*
|
||||
* Declarations of the public API for Tcl DataBase Connectivity (TDBC)
|
||||
*
|
||||
* Copyright (c) 2006 by Kevin B. Kenny
|
||||
*
|
||||
* See the file "license.terms" for information on usage and redistribution of
|
||||
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
*
|
||||
* RCS: @(#) $Id$
|
||||
*
|
||||
*-----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef TDBC_H_INCLUDED
|
||||
#define TDBC_H_INCLUDED 1
|
||||
|
||||
#include <tcl.h>
|
||||
|
||||
#ifndef TDBCAPI
|
||||
# if defined(BUILD_tdbc)
|
||||
# define TDBCAPI MODULE_SCOPE
|
||||
# else
|
||||
# define TDBCAPI extern
|
||||
# undef USE_TDBC_STUBS
|
||||
# define USE_TDBC_STUBS 1
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined(BUILD_tdbc)
|
||||
DLLEXPORT int Tdbc_Init(Tcl_Interp *interp);
|
||||
#elif defined(STATIC_BUILD)
|
||||
extern int Tdbc_Init(Tcl_Interp* interp);
|
||||
#else
|
||||
DLLIMPORT int Tdbc_Init(Tcl_Interp* interp);
|
||||
#endif
|
||||
|
||||
#define Tdbc_InitStubs(interp) TdbcInitializeStubs(interp, \
|
||||
TDBC_VERSION, TDBC_STUBS_EPOCH, TDBC_STUBS_REVISION)
|
||||
#if defined(USE_TDBC_STUBS)
|
||||
TDBCAPI const char* TdbcInitializeStubs(
|
||||
Tcl_Interp* interp, const char* version, int epoch, int revision);
|
||||
#else
|
||||
# define TdbcInitializeStubs(interp, version, epoch, revision) \
|
||||
(Tcl_PkgRequire(interp, "tdbc", version))
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that
|
||||
* appear near the top of configure.ac.
|
||||
*/
|
||||
|
||||
#define TDBC_VERSION "1.1.1"
|
||||
#define TDBC_PATCHLEVEL "1.1.1"
|
||||
|
||||
/*
|
||||
* Include the Stubs declarations for the public API, generated from
|
||||
* tdbc.decls.
|
||||
*/
|
||||
|
||||
#include "tdbcDecls.h"
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Local Variables:
|
||||
* mode: c
|
||||
* c-basic-offset: 4
|
||||
* fill-column: 78
|
||||
* End:
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue