?? cio.cpp
字號:
// Created:10-27-98
// By Jeff Connelly
// ComprLib I/O header
#include "stdafx.h"
// Global function pointers for I/O definitions
BOOL (*end_of_data)();
unsigned char (*read_byte)();
void (*write_byte)(unsigned char);
void (*beginning_of_data)();
long (*stream_size)();
// This is the message to display when an error occurs. For use with
// 'printf'. This string is put in a seperate file and made global to avoid
// putting this string in every .O file. It saves some space, at least.
const char* comprlib_err_message = "Error occured in ComprLib: \n"
"(C++ Exception Handling disabled)\n"
"%s\n"
"Function: %s\n"
"Code: %d\n";
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -