vc++小贴士

弹对话框

TCHAR tips[256];
_stprintf_s(tips, _T("OpenProcess() failed: %d"), GetLastError());
MessageBox( tips, _T("Loader Error"), MB_OK);
需要包含头文件

pragma once

include <wtypes.h>

include <tchar.h>

include <strsafe.h>

在外面看debug信息

下载Dbgview.exe
OutputDebugString(TEXT("InitImGui9 Sucessful!"));

发表新评论