readme.dl
来自「MIDI解码程序(用VC编写)」· DL 代码 · 共 43 行
DL
43 行
====================== DYNAMIC INTERFACE ====================== Interface modules that are specified with `-i' option can beloadable modules by using dynamic link module. Place the shared library interface_<ID>.soon the SHARED_LIB_PATH directory. In this case <ID> is the interface'sID that are specified at `-i' option. TiMidity++ requires to this shared library the following function: (the <ID> is the same as above)ControlMode* interface_<ID>_loader(void){ ControlMode* ctl; /* ... */ return ctl;} If the dynamic interface that are specified at -i<ID>, TiMidity++loads interface_<ID>.so at the SHARED_LIB_PATH (this is the macro specifiedin the Makefile) and calls a function in the shared libraryinterface_<ID>_loader(). If a file interface_<ID>.txtdescribing the information about the interface by 1 line is in theSHARED_LIB_PATH, TiMidity++ displays this information when `-h'option is specified.WARNING: You shouldn't specify the interface you want to build as dynamic linkas enabled in Makefile. TiMidity++ searches its interfaces first frominterfaces statically linked with TiMidity++, and next from dynamic linkedinterfaces.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?