@@ -50,35 +50,41 @@ extern "C" {
50
50
* current version, but we also increase the oldest-compatible
51
51
* version to match the (just-incremented) current version.
52
52
*/
53
- #define DRMF_VERSION_COMPAT ${DRMF_VERSION_COMPAT}
54
- #define DRMF_VERSION_CUR ${DRMF_VERSION_CUR}
55
- #define DRMF_VERSION_USED_VAR _DRMF_VERSION_USED_
56
- DR_EXPORT LINK_ONCE int DRMF_VERSION_USED_VAR = $ {DRMF_VERSION_CUR };
57
- #define DRMF_VERSION_USED_NAME STRINGIFY(DRMF_VERSION_USED_VAR)
58
-
53
+ #define DRMF_VERSION_COMPAT \
54
+ $ \
55
+ { \
56
+ DRMF_VERSION_COMPAT \
57
+ }
58
+ #define DRMF_VERSION_CUR \
59
+ $ \
60
+ { \
61
+ DRMF_VERSION_CUR \
62
+ }
63
+ #define DRMF_VERSION_USED_VAR _DRMF_VERSION_USED_
64
+ DR_EXPORT LINK_ONCE int DRMF_VERSION_USED_VAR = $ { DRMF_VERSION_CUR };
65
+ #define DRMF_VERSION_USED_NAME STRINGIFY(DRMF_VERSION_USED_VAR)
59
66
60
67
/** Status codes for the Dr. Memory Framework */
61
68
typedef enum {
62
- DRMF_SUCCESS , /**< Operation succeeded. */
63
- DRMF_ERROR , /**< Operation failed. */
69
+ DRMF_SUCCESS , /**< Operation succeeded. */
70
+ DRMF_ERROR , /**< Operation failed. */
64
71
DRMF_ERROR_INCOMPATIBLE_VERSION , /**< Operation failed: incompatible version */
65
- DRMF_ERROR_INVALID_PARAMETER , /**< Operation failed: invalid parameter */
66
- DRMF_ERROR_INVALID_SIZE , /**< Operation failed: invalid size */
67
- DRMF_ERROR_NOT_IMPLEMENTED , /**< Operation failed: not yet implemented */
72
+ DRMF_ERROR_INVALID_PARAMETER , /**< Operation failed: invalid parameter */
73
+ DRMF_ERROR_INVALID_SIZE , /**< Operation failed: invalid size */
74
+ DRMF_ERROR_NOT_IMPLEMENTED , /**< Operation failed: not yet implemented */
68
75
DRMF_ERROR_FEATURE_NOT_AVAILABLE , /**< Operation failed: not available */
69
- DRMF_ERROR_NOMEM , /**< Operation failed: not enough memory */
70
- DRMF_ERROR_DETAILS_UNKNOWN , /**< Operation failed: answer not yet known */
71
- DRMF_ERROR_NOT_FOUND , /**< Operation failed: query not found */
72
- DRMF_ERROR_INVALID_CALL , /**< Operation failed: pre-req for call not met */
73
- DRMF_ERROR_NOT_ENOUGH_REGS , /**< Operation failed: not enough registers for use */
74
- DRMF_ERROR_ACCESS_DENIED , /**< Operation failed: access denied */
76
+ DRMF_ERROR_NOMEM , /**< Operation failed: not enough memory */
77
+ DRMF_ERROR_DETAILS_UNKNOWN , /**< Operation failed: answer not yet known */
78
+ DRMF_ERROR_NOT_FOUND , /**< Operation failed: query not found */
79
+ DRMF_ERROR_INVALID_CALL , /**< Operation failed: pre-req for call not met */
80
+ DRMF_ERROR_NOT_ENOUGH_REGS , /**< Operation failed: not enough registers for use */
81
+ DRMF_ERROR_ACCESS_DENIED , /**< Operation failed: access denied */
75
82
DRMF_WARNING_ALREADY_INITIALIZED , /**< Operation aborted: already initialized */
76
- DRMF_ERROR_NOT_INITIALIZED , /**< Operation failed: not initialized */
77
- DRMF_ERROR_INVALID_ADDRESS , /**< Operation failed: invalid address */
83
+ DRMF_ERROR_NOT_INITIALIZED , /**< Operation failed: not initialized */
84
+ DRMF_ERROR_INVALID_ADDRESS , /**< Operation failed: invalid address */
78
85
DRMF_WARNING_UNSUPPORTED_KERNEL , /**< Continuing not advised: unsupported kernel */
79
86
} drmf_status_t ;
80
87
81
-
82
88
/*@}*/ /* end doxygen group */
83
89
84
90
#ifdef __cplusplus
0 commit comments