?? 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 + -