?? cbarray.h
字號:
/////////////////
// CBArry.h : 《赤壁》的數(shù)組查詢
//
// 版本0010 : 一九九七年三月四日
//
// written by : Li Haijun
//
// Compiler : Visual C++ 4.2
//
// Copyright : WayAhead Co.Ltd. 1996-1997
/////////////////
//
// 此文件用來
// 1. 處理和存放所有被查詢的對象單元(將領(lǐng)、士兵、建筑)的數(shù)組
// 2. 處理和存放所有存盤文件
#ifndef __CBARRAY_H__
#define __CBARRAY_H__
//#include "marco.h"
////////////////////////////////
// to set all my general into the pAllGeneral array
void SetAllGeneral();
///////////////////////////////////////////
// to pagedown or pageup pAllGeneral array
int ToPageAllGeneral( int Flag );
//////////////////////////////////////////
// to define a file class for query the save files
class CMyFile
{
public:
BOOL m_bFlag ; // m_bFlag = TRUE -> this instance include a file
// m_bFlag = FALSE -> this instance disclude a file
int m_nSerialNumber ; // to record the serial number of this file save in
char m_sFileName[128] ; // to record the file name of this name
public:
CMyFile() ;
~CMyFile() ;
};
////////////////////////////////////////////
// to read all saving files information
void GetAllSaveFile() ;
///////////////////////////////////////////
// to pagedown or pageup AllFile array
int ToPageAllFile( int Flag ) ;
//////////////////////////////////////////////////////
// to manager all players that have created the game
void GetAllCreatedPlayer() ;
///////////////////////////////////////////
// to pagedown or pageup all players that have created this game
int ToPageAllCreatePlayer( int Flag ) ;
///////////////////////////////////////////////////////////////
//
// to operate the network maps when you want a net work fight
//
////////////////////////////////////////////
void GetAllMaps() ;
///////////////////////////////////////////
// to pagedown or pageup All maps array
int ToPageAllMaps( int Flag ) ;
///////////////////////////////////////////////////////
/////////////////////
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -