mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
14 lines
206 B
C++
14 lines
206 B
C++
#ifdef WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <tcl.h>
|
|
#include <tk.h>
|
|
|
|
#if TK_MAJOR_VERSION==8 && TK_MINOR_VERSION>=4
|
|
#define tcl_const const
|
|
#else
|
|
#define tcl_const
|
|
#endif
|