oandxdefs.h

来自「Symbian OS C++ for Mobile Phones v3 Exam」· C头文件 代码 · 共 27 行

H
27
字号
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

#ifndef OANDX_DEFS_H
#define OANDX_DEFS_H

#define KTilesPerSide	3
#define KTilesPerRow 3
#define KTilesPerCol 3
#define KNumberOfTiles (KTilesPerRow*KTilesPerCol)

#define KStatusWinHeight 20

#define KTilesPerWinLine 3
#define KCountWinLines 8

enum TOandXTileStates
    {
    ETileBlank  = 0,
    ETileNought = 1,
    ETileCross  = 4
    }; // Values chosen so that:
       // KTilesPerRow*ETileNought < ETileCross
       // KTilesPerCol*ETileNought < ETileCross


#endif // OANDX_DEFS_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?