📄 osconfig.h
字号:
#ifndef OSCONFIG_H#define OSCONFIG_H/*** Define enclosures for include files with C linkage (mostly system headers)*/#ifdef __cplusplus#define BEGIN_EXTERN_C extern "C" {#define END_EXTERN_C }#else#define BEGIN_EXTERN_C#define END_EXTERN_C#endif/*** This head includes an OS/Compiler specific configuration header.** Add entries for specific non-unix OS/Compiler environments.** Under unix the default <cfunix.h> should be used.***/#ifdef HAVE_CONFIG_H/*** Some sort of Unix platform supported by the GNU Configure utility.** Just include the automatically generated <cfunix.h>*/#include "cfunix.h"#elif defined(_WIN32)/*** Visual C++ in a Windows 32 bit environment (Windows 9x/Me/NT/2000/XP)*/#include "dcmtk/config/cfwin32.h"#else/*** Don't know what sort of machine this is*/#endif#endif /* !OSCONFIG_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -