Changeset bc1b8837b6 in tspsg for src/os.h


Ignore:
Timestamp:
Oct 20, 2009, 11:40:16 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:
caef58b531
Parents:
55c4b858e9
Message:

Started documenting the source code in doxygen format.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/os.h

    r55c4b858e9 rbc1b8837b6  
    2626
    2727// Some target arch detection.
    28 // NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers
     28/*!
     29 * \def ARCH
     30 * \brief The target CPU architecture TSPSG was built for.
     31 * \warning NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers.
     32 */
    2933#if defined(__amd64__) || defined(_M_X64)
    3034        #define ARCH " (AMD 64-bit)"
     
    4448
    4549// Target OS detection. Done by Qt, so should work with any compiler.
     50/*!
     51 * \def OS
     52 * \brief The target operating system TSPSG was built for.
     53 */
     54/*!
     55 * \def OSID
     56 * \brief The target operating system ID.
     57 *
     58 * This value is used in task file metadata.
     59 */
    4660#ifdef Q_OS_AIX
    4761        #define OS "AIX"ARCH
Note: See TracChangeset for help on using the changeset viewer.