我刚尝试在visual stduio 2015中测试此代码:
#include <stdio.h>
#include <conio.h>
#include <dos.h>
void set_border(int);
void main()
{
set_border(10);
getch();
}
void set_border(int color)
{
union REGS in, out;
in.h.ah = 0x0b;
in.h.bh = 0;
in.h.bl = color;
int86(0x10, &in, &out);
}
我想为显示器屏幕设置颜色边框,但vs显示&#34;不允许不完整类型&#34; 错误。 union REGS in,out; 和3下一行中突出显示的错误。