gprstest.cpp
来自「采用cb平台开以」· C++ 代码 · 共 31 行
CPP
31 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("GprsTest.res");
USEFORM("main\fmModem.cpp", frmModem);
USEUNIT("spcom\SPCOMM.PAS");
USEUNIT("main\UartPort.cpp");
USEUNIT("main\Gprsproc.cpp");
USE("main\Gprsproc.h", File);
USE("gprs\GprsNet.h", File);
USE("gprs\S_NET.H", File);
USEUNIT("gprs\Moto.cpp");
USEUNIT("gprs\NET.cpp");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TfrmModem), &frmModem);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?