📄 mexversion.rc
字号:
//* $Revision 1.0 */// Mex versioning resource file// this should be compiled with the V4_COMPAT and ARRAY_ACCESS_INLINING// defines if they apply.//// DO NOT EDIT - this is for MATLAB use only/////////////////////////////////////////////////////////////////////////////// Define strings,// ML_VERSION is the version of Matlab that the mex file is built against.// INLINING determines in inlining was switched on or not.#define ML_VERSION 100#define INLINING 101 ///////////////////////////////////////////////////////////////////////////////// String Table//STRINGTABLEBEGIN#ifdef V4_COMPAT ML_VERSION, "MATLAB 4 compatible"#else ML_VERSION, "MATLAB 5.1 native"#endif#ifdef ARRAY_ACCESS_INLINING INLINING, "inlined"#else INLINING, "not inlined"#endifEND
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -