本文整理汇总了C++中CExeModule::Echo方法的典型用法代码示例。如果您正苦于以下问题:C++ CExeModule::Echo方法的具体用法?C++ CExeModule::Echo怎么用?C++ CExeModule::Echo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CExeModule
的用法示例。
在下文中一共展示了CExeModule::Echo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: coInit
/////////////////////////////////////////////////////////////////////////////
// Program Entry Point
//
extern "C" int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
// Initialize the application, if needed
g_papp->Initialize(GetCommandLine());
// Just display syntax when the command-line is empty
if (argc < 2)
return _Module.Syntax();
// Enter this thread into a COM apartment
#if (_WIN32_WINNT >= 0x0400 || defined(_WIN32_DCOM)) & defined(_ATL_FREE_THREADED)
TCCoInit coInit(COINIT_MULTITHREADED);
#else
TCCoInit coInit();
#endif
assert(coInit.Succeeded());
// Initialize the ATL _Module object
_Module.Init(ObjectMap, GetModuleHandle(NULL), &LIBID_PigsLib);
// Parse the command line options
HRESULT hr = _Module.ParseCommandLine(argc, argv);
if (FAILED(hr))
return hr;
if (S_FALSE == hr)
return S_OK;
// Initialize security
if (FAILED(hr = _Module.InitializeSecurity()))
return _Module.ReportError(hr, TEXT("Security Initialization"));
// Register our class (factory) objects
if (FAILED(hr = _Module.RegisterClassObjects()))
{
_Module.Term();
return _Module.ReportError(hr, TEXT("Class Object Registration"));
}
// Display status
_Module.Echo(TEXT(" The server is running. Ctrl+C to exit."));
_Module.EchoFlush();
// Handle Ctrl+C and other important exiting events
SetConsoleCtrlHandler(_Module.ConsoleCtrlHandler, true);
// Enter a message loop (very last Unlock will post WM_QUIT message)
MSG msg;
while (GetMessage(&msg, 0, 0, 0))
DispatchMessage(&msg);
// Revoke our class (factory) objects
_Module.RevokeClassObjects();
// Terminate the ATL _Module object
_Module.Term();
// Indicate success
return S_OK;
}