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


Ignore:
Timestamp:
Oct 20, 2009, 11:40:16 AM (15 years ago)
Author:
laleppa
Message:

Started documenting the source code in doxygen format.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        55*.sln
        66*.suo
        7 *.vcproj*
         7*.user
         8*.vcproj
        89Makefile*
        910debug
  • trunk/src/os.h

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