📄 main.cpp
字号:
// Copyright (C) 2002-2003 The Board of Trustees of the Leland Stanford
// Junior University
#include "libapi.hpp"
//************************************************************
// the standard main.cpp for any stream application
//************************************************************
#ifndef _REAL_IMAGINE
void LIBAPI2FN isimhost_main(int argc, char **argv);
//------------------------------------------------------------
void main(int argc, char **argv)
// calls isimhost_main in isimhost.dll
//------------------------------------------------------------
{
isimhost_main(argc, argv);
}
#else // _REAL_IMAGINE
#include <stdio.h>
void board_main(void);
// main must return int to be GNU compatible
int main(void)
{
board_main();
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -