Home > ソフトウェア > Ashley > Ashley130.zip/Ashley130.exe > Src > DebugConsole.h
//DebugConsole.h //デバッグ情報表示用のコンソールを表示 /*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# Ashley Ver.1.30 Coded by x@rgs This code is released under NYSL Version 0.9982 See NYSL_withfaq.TXT for further details. Ashleyは、アップローダからダウンロードしたZIPやRAR等のファイル名を元に戻すソフトです。 #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*/ #include<windows.h> #include<locale.h> class CDebugConsole{ public: //Initialize CDebugConsole(){ AllocConsole(); freopen("CONOUT$","w",stdout); //ロケールの設定をしないと、コンソールに日本語が表示されない(Unicode) setlocale(LC_ALL,"Japanese"); _tprintf(_T("**Debug Window**\n")); } //UnInitialize virtual ~CDebugConsole(){ FreeConsole(); } };
Home > ソフトウェア > Ashley > Ashley130.zip/Ashley130.exe > Src > DebugConsole.h