mexversion.rc
来自「A set of C++ and Matlab routines impleme」· RC 代码 · 共 38 行
RC
38 行
// Copyright 1997-2004 The MathWorks, Inc.// $Revision: 1.6.4.2 $ $Date: 2004/08/17 21:22:27 $//// Mex versioning resource file// this should be compiled with the V5_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 V5_COMPAT ML_VERSION, "MATLAB 5 compatible"#else ML_VERSION, "MATLAB R14 native"#endif#ifdef ARRAY_ACCESS_INLINING INLINING, "inlined"#else INLINING, "not inlined"#endifEND
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?