?? projectmanagement.gel
字號:
// A GEL Function showcasing GELs ability
// to automate common tasks
menuitem "Project Management Tool";
hotmenu Run_Project()
{
// Call standard GEL library function to load project
GEL_ProjectLoad("C:\\Source\\HelloDSP.pjt");
// Call standard GEL library function to build project
GEL_ProjectBuild();
// Call standard GEL library function to load the DSP program
GEL_Load("C:\\Source\\Debug\\HelloDSP.out");
// Call standard GEL library function to run the project
GEL_Run();
// Indicate that the GEL script is finished
GEL_TextOut("Finished Executing GEL Script!");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -