2005-11-18から1日間の記事一覧

C++統合開発環境DevC++

http://www.gesource.jp/programming/etc/wxwidgets/

デバッグコンソールを作るクラス

int n = 10; CDebugConsole::GetInstance ().Printf ("n は %d です。", n);// DebugConsole.h #ifndef __DEBUGCONSOLE__H #define __DEBUGCONSOLE__H #include <windows.h> #include <stdarg.h> #ifdef __cplusplus #ifdef DEBUGCONSOLE #define __DBGINLINE #else //DEBUGCONSOL</stdarg.h></windows.h>…

DispatchMessageやらPreTranslateMessageやらの説明

http://hp.vector.co.jp/authors/VA023539/tips/window/002.htm>> MSG msg; while ( ::GetMessage(&msg,NULL,0,0) ) { ::TranslateMessage(&msg); ::DispatchMessage(&msg); }これが基本で、たまにちょっと追加することがあります。 まず、GetMessageで、キ…