📄 ovlogo.c
字号:
/* 007 24-May-87 ovlogo.c
Copyright (c) 1987 by Blue Sky Software. All rights reserved.
*/
#include "ov.h"
#include "direct.h"
extern char version[], logo[][76];
ovlogo() { /* display the initial signon screen w/logo */
int i;
for (i = 0; i < 8; i++) /* display the logo lines */
disp_str_at(logo[i],2+i,3);
disp_str_at(version,12,(SCREEN_COLS >> 1)-(strlen(version) >> 1));
setvattrib(DIS_HIGH);
disp_str_at(" Press any key to continue ",14,26);
setvattrib(DIS_NORM);
disp_str_at(" James Mathews ",17,27);
disp_str_at(" Blue Sky Software ",18,27);
disp_str_at(" 172 Manor Drive ",19,27);
disp_str_at(" Absecon, NJ 08201 ",20,27);
disp_str_at(" Copyright (c) 1986,1987 Blue Sky Software. All rights reserved. ",
23,6);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -