Changeset 85ad815b0b in tspsg for src/os.h


Ignore:
Timestamp:
Oct 21, 2009, 2:48:49 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
e0fcac5f2c
Parents:
caef58b531
Message:

Some documentation updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/os.h

    rcaef58b531 r85ad815b0b  
    2525#define OS_H
    2626
     27/*!
     28 * \file os.h
     29 * \brief This file contains TSPSG target CPU architecture and OS detection.
     30 *
     31 *  Arch detection works only for <b>GNU C</b>, <b>Visual Studio</b>, <b>Intel C/C++</b> and <b>MinGW32</b> compilers.
     32 *
     33 *  OS detection should work for any compiler.
     34 */
     35
    2736// Some target arch detection.
    2837/*!
    2938 * \def ARCH
    3039 * \brief The target CPU architecture TSPSG was built for.
    31  * \warning NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers.
     40 * \warning NOTE: Only for <b>GNU C</b>, <b>Visual Studio</b>, <b>Intel C/C++</b> and <b>MinGW32</b> compilers.
    3241 */
    3342#if defined(__amd64__) || defined(_M_X64)
     
    4756#endif // ARCH
    4857
    49 // Target OS detection. Done by Qt, so should work with any compiler.
     58// Target OS detection. Done by Qt, so should work for any compiler.
    5059/*!
    5160 * \def OS
Note: See TracChangeset for help on using the changeset viewer.