main.cpp
来自「H.264完整的C语言代码和DCT的代码」· C++ 代码 · 共 32 行
CPP
32 行
// 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 + =
减小字号Ctrl + -
显示快捷键?