Changeset 69 in pacpusframework for trunk/include/Pacpus/kernel


Ignore:
Timestamp:
01/10/13 00:04:42 (12 years ago)
Author:
Marek Kurdej
Message:

Added: more documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/kernel/pacpus.h

    r66 r69  
    1717#include <Pacpus/kernel/road_time.h>
    1818
    19 // Deprecated, you should use M_PI from cmath.
     19/// Pi math constant
     20///
     21/// @deprecated,use M_PI from cmath.
    2022#ifndef PACPUS_PI
    2123#   define PACPUS_PI       3.1415926
    2224#endif
    2325
    24 // Export macro for PacpusLib DLL for Windows only
     26/// Export macro for PacpusLib DLL for Windows only
    2527#ifdef WIN32
    2628#   ifdef PACPUSLIB_EXPORTS
     
    3638#endif
    3739
     40/// @def PACPUS_DEPRECATED(func)
     41/// Develops to the function or method declaration @b func
     42/// and marks it as deprecated.
     43
     44/// @def PACPUS_DEPRECATED(func, msg)
     45/// Develops to the function or method declaration @b func
     46/// and marks it as deprecated with a given comment @b msg.
    3847#ifdef __GNUC__
    3948#   define PACPUS_DEPRECATED(func)              func __attribute__ ((deprecated))
Note: See TracChangeset for help on using the changeset viewer.