📄 linkercmds.h
字号:
//
// File purpose:
// build modification buttons
//
#pragma once
//#include "NoMsvcr70.h"
#pragma comment(linker,"/SUBSYSTEM:CONSOLE") // a console, please
#pragma pack(1) // simon says: structures have to be byte aligned
// little optimization
#if !defined(_DEBUG)
//#pragma comment(linker,"/MERGE:.rdata=.text /MERGE:.data=.text /SECTION:.text,EWR")
#endif
// control verbose builds
#ifdef _DEBUG
#define VERBOSE_PLEASE
#endif
#ifdef VERBOSE_PLEASE
#pragma message( "VERBOSE modus: ON" )
#else
#pragma message( "VERBOSE modus: OFF" )
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -