mexversion.rc

来自「Finite Volume Poisson PDE Solver」· RC 代码 · 共 37 行

RC
37
字号
//* $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 + =
减小字号Ctrl + -
显示快捷键?