mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-31 03:50:15 -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
40
msys2/usr/include/tdbcInt.h
Normal file
40
msys2/usr/include/tdbcInt.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* tdbcInt.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 TDBCINT_H_INCLUDED
|
||||
#define TDBCINT_H_INCLUDED 1
|
||||
|
||||
#include "tdbc.h"
|
||||
|
||||
/*
|
||||
* Used to tag functions that are only to be visible within the module being
|
||||
* built and not outside it (where this is supported by the linker).
|
||||
*/
|
||||
|
||||
#ifndef MODULE_SCOPE
|
||||
# ifdef __cplusplus
|
||||
# define MODULE_SCOPE extern "C"
|
||||
# else
|
||||
# define MODULE_SCOPE extern
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Linkage to procedures not exported from this module
|
||||
*/
|
||||
|
||||
MODULE_SCOPE int TdbcTokenizeObjCmd(ClientData clientData, Tcl_Interp* interp,
|
||||
int objc, Tcl_Obj *const objv[]);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue