⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cio.cpp

📁 非常好用的五子棋游戏源码
💻 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 + -