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