Changeset 69 in pacpusframework for trunk/include/Pacpus/kernel
- Timestamp:
- Jan 10, 2013, 12:04:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/pacpus.h
r66 r69 17 17 #include <Pacpus/kernel/road_time.h> 18 18 19 // Deprecated, you should use M_PI from cmath. 19 /// Pi math constant 20 /// 21 /// @deprecated,use M_PI from cmath. 20 22 #ifndef PACPUS_PI 21 23 # define PACPUS_PI 3.1415926 22 24 #endif 23 25 24 // Export macro for PacpusLib DLL for Windows only26 /// Export macro for PacpusLib DLL for Windows only 25 27 #ifdef WIN32 26 28 # ifdef PACPUSLIB_EXPORTS … … 36 38 #endif 37 39 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. 38 47 #ifdef __GNUC__ 39 48 # define PACPUS_DEPRECATED(func) func __attribute__ ((deprecated))
Note:
See TracChangeset
for help on using the changeset viewer.