Changeset 66 in tspsg-svn for trunk/src/os.h


Ignore:
Timestamp:
Oct 21, 2009, 2:48:49 PM (15 years ago)
Author:
laleppa
Message:

Some documentation updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os.h

    r64 r66  
    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.