Changeset 993d5af6f6 in tspsg for src/globals.h


Ignore:
Timestamp:
Jun 30, 2009, 1:02:31 AM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
2b9257627c
Parents:
ac4cb71650
Message:

+ Opening task file
+ Saving task file

  • Translations update to reflect recent changes.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/globals.h

    rac4cb71650 r993d5af6f6  
    2222 */
    2323
    24 #ifndef DEFINES_H
    25 #define DEFINES_H
     24#ifndef GLOBALS_H
     25#define GLOBALS_H
    2626
     27// INCLUDES
     28#include <QtCore>
     29#include <QtGui>
     30
     31// OS detection
     32#include "os.h"
     33
     34// DEFINES
    2735// Default values
    2836#define DEF_RAND_MIN 1
     
    3240#define DEF_FONT_SIZE 12
    3341#define DEF_FONT_COLOR Qt::black
     42
     43// TSPSG Task file signature - letters TSPT
     44#define TSPT quint32(0x54535054)
     45// TSPSG Task file version
     46#define TSPT_VERSION quint8(1)
     47// TSPSG Task file metadata version
     48#define TSPT_META_VERSION quint8(1)
     49// TSPSG Task file metadata size in bytes (incl. version)
     50#define TSPT_META_SIZE 2
     51// ZKomModRd Task file signature - letters ZK
     52#define ZKT quint16(0x5A4B)
     53// ZKomModRd Task file version
     54#define ZKT_VERSION quint8(1)
    3455
    3556// Decided, that static array with 100 of cities maximum hard limit
     
    4566#define INFSTR "-----"
    4667
    47 #endif // DEFINES_H
     68#endif // GLOBALS_H
Note: See TracChangeset for help on using the changeset viewer.