summaryrefslogtreecommitdiffstats
path: root/generic/tkIntXlibDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-31 09:27:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-31 09:27:11 (GMT)
commit3f70347b4b061f2da308565d2a850d5f0fdf8dcf (patch)
treeb0c5ab37fa9ac435be51a5019b478964c876194b /generic/tkIntXlibDecls.h
parent975dc4a26d2d686c80b5f06ef0f218e5e8051503 (diff)
parent4f970286ec90b02eaf3ad950648ca61a79c193e9 (diff)
downloadtk-3f70347b4b061f2da308565d2a850d5f0fdf8dcf.zip
tk-3f70347b4b061f2da308565d2a850d5f0fdf8dcf.tar.gz
tk-3f70347b4b061f2da308565d2a850d5f0fdf8dcf.tar.bz2
Put extern "C" guards around all stub table struct definitions,
so it is usable to be used for C++ compilers as well without the danger of modifying the calling convention. For tkDecls.h, ttkDecls.h tkIntXlibDecls.h is was no problem, because tk.h, tkTheme.h and Xlib.h already contain those guards. But not for the other *Decls.h files.
Diffstat (limited to 'generic/tkIntXlibDecls.h')
-rw-r--r--generic/tkIntXlibDecls.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tkIntXlibDecls.h b/generic/tkIntXlibDecls.h
index 70c63d5..8abda05 100644
--- a/generic/tkIntXlibDecls.h
+++ b/generic/tkIntXlibDecls.h
@@ -36,6 +36,10 @@ typedef int (*XAfterFunction) ( /* WARNING, this type not in Xlib spec */
/* !BEGIN!: Do not edit below this line. */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* Exported function declarations:
*/
@@ -835,10 +839,8 @@ typedef struct TkIntXlibStubs {
#endif /* AQUA */
} TkIntXlibStubs;
-#ifdef __cplusplus
-extern "C" {
-#endif
extern const TkIntXlibStubs *tkIntXlibStubsPtr;
+
#ifdef __cplusplus
}
#endif