예제 #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
void __stdcall PrintUsage()
{
    PrintUsageFormat();
    wprintf(L"Try 'ch.exe -?' for help\n");
}