cio.cpp

来自「非常好用的五子棋游戏源码」· C++ 代码 · 共 23 行

CPP
23
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?