プログラムでデバッグ中かどうかを判別する方法
Visual Studioなどのデバッガが接続されているかどうかで処理を分けたい場合に使用します。
たまにありますよね。
関数
BOOL IsDebuggerPresent();
使用例
#include <debugapi.h> if (IsDebuggerPresent()) { // デバッガー接続時の処理 }
Visual Studioなどのデバッガが接続されているかどうかで処理を分けたい場合に使用します。
たまにありますよね。
BOOL IsDebuggerPresent();
#include <debugapi.h> if (IsDebuggerPresent()) { // デバッガー接続時の処理 }