📄 misc.cpp
字号:
//
// miscellaneous
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include <stdarg.h>
#include <stdio.h>
#include "Misc.h"
#include "dc.h"
//
// 包含完整路径名称
//
BOOL FullPath(char *path, const char *file)
{
char *part;
if (!GetFullPathName(file, _MAX_PATH, path, &part)) {
strncpy(path, file, _MAX_PATH);
return FALSE;
}
return TRUE;
}
#ifdef _DEBUG
//
// 显示除错事件
//
void __cdecl DebugPrintf(const char *fmt, ...)
{
char tmp[4096];
va_list ap;
va_start(ap, fmt);
vsprintf(tmp, fmt, ap);
OutputDebugString(tmp);
va_end(ap);
}
//
// ASSERT的辅助函式
//
bool AssertFailed(const char *exp, const char *file, unsigned line)
{
DebugPrintf("Assertion failed: %s, file %s, line %d", exp, file, line);
char tmp[1024];
sprintf(tmp, "%s, file %s, line %d", exp, file, line);
HWND hWnd = ::GetActiveWindow();
if (hWnd != NULL)
hWnd = ::GetLastActivePopup(hWnd);
MSG msg;
BOOL bPostQuitNeed = ::PeekMessage(&msg, NULL, WM_QUIT, WM_QUIT, PM_REMOVE);
int result = ::MessageBox(hWnd, tmp, "Assertion Failed",
MB_TASKMODAL|MB_ICONHAND|MB_ABORTRETRYIGNORE|MB_SETFOREGROUND);
if (bPostQuitNeed)
PostQuitMessage(msg.wParam);
switch (result) {
case IDIGNORE:
return false;
case IDRETRY:
return true;
default:
abort();
}
return false;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -