?? replace.cpp
字號:
// Replacements for unix and vt functions
//
// $Id: replace.cpp 2.2 1995/10/27 20:08:11 tsurace Beta $
#define STRICT
#include <windows.h>
#pragma hdrstop
#include "replace.h"
#include "resids.hpp"
#include "global.hpp"
extern "C" {
extern void cleanup(); /* ../util.c */
struct passwd * getpwnam (const char * name)
{
(void) name; // Silence 'not used' warning
return NULL;
}
int getch()
{
return Global::GetchLoop();
}
void setpwent()
{
;
}
void endpwent()
{
;
}
void vterror (char *s)
{
scream_and_die(EC_VTError, s);
}
void vtdie(char * s)
{
scream_and_die(EC_VTError, s);
}
void vtexit()
{
cleanup();
PostQuitMessage(0);
}
}; /* extern "C" */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -