コード例 #1
0
ファイル: ch.cpp プロジェクト: mjsabby/ChakraCore
void __stdcall PrintUsage()
{
#if !defined(ENABLE_DEBUG_CONFIG_OPTIONS)
    wprintf(_u("\nUsage: %s <source file> %s"), hostName,
            _u("\n[flaglist] is not supported for Release mode\n"));
#else
    PrintUsageFormat();
    wprintf(_u("Try '%s -?' for help\n"), hostName);
#endif
}
コード例 #2
0
ファイル: ch.cpp プロジェクト: EdMaurer/ChakraCore
void __stdcall PrintUsage()
{
#ifndef DEBUG
    wprintf(_u("\nUsage: %s <source file> %s"), hostName,
            _u("\n[flaglist] is not supported for Release mode\n"));
#else
    PrintUsageFormat();
    wprintf(_u("Try '%s -?' for help\n"), hostName);
#endif
}
コード例 #3
0
ファイル: ch.cpp プロジェクト: EdwardBetts/spidernode
void __stdcall PrintUsage()
{
    PrintUsageFormat();
    wprintf(L"Try 'ch.exe -?' for help\n");
}