📄 modules.h
字号:
#ifndef H_MODULES#define H_MODULES#include "moduleinfo.h"#include "moduledeps.h"typedef struct moduleList_s * moduleList;struct loadedModuleInfo { char * name; char ** args; int weLoaded; int written; char * path; int firstDevNum, lastDevNum; enum driverMajor major; enum driverMinor minor;};struct extractedModule { char * path; char * location;};struct moduleList_s { struct loadedModuleInfo mods[100]; int numModules;};int mlReadLoadedList(moduleList * mlp);int mlLoadModule(const char * module, moduleList modLoaded, moduleDeps modDeps, moduleInfoSet modInfo, char ** args);int mlLoadModuleSet(const char * modNames, moduleList modLoaded, moduleDeps modDeps, moduleInfoSet modInfo);int mlModuleInList(const char * modName, moduleList list);void writeScsiDisks(moduleList list);int removeLoadedModule(const char * modName, moduleList modLoaded);char * getModuleLocation(int version);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -