📄 template1.c
字号:
/************************************************************************* **** template1.c **** **** Template for a trivial Motif program. **** *************************************************************************//*** #include files go here ***/Widget appshell; /* Application Shell */void main( argc, argv ) int argc; char *argv[];{ appshell = XtInitialize( argv[0], "ResName", NULL, 0, &argc, argv ); /*** Creation/Management of instance tree goes here ***/ XtRealizeWidget( appshell ); XtMainLoop();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -