diff options
| author | Antonin Descampe <antonin@gmail.com> | 2010-10-24 20:28:22 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2010-10-24 20:28:22 +0000 |
| commit | 0dc7f6a2d3d2a242c561b7cc1e4003542f2810b1 (patch) | |
| tree | f227bf1aa1d0e387adc458295a9ffe661b4a9d77 /libopenjpeg/opj_malloc.h | |
| parent | bb9232c9d9d5e8ea3a2de36f20adac72c15127af (diff) | |
Fixed doxygen data inside source code (from winfried)
Diffstat (limited to 'libopenjpeg/opj_malloc.h')
| -rw-r--r-- | libopenjpeg/opj_malloc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libopenjpeg/opj_malloc.h b/libopenjpeg/opj_malloc.h index c477aec0..1c99bcd5 100644 --- a/libopenjpeg/opj_malloc.h +++ b/libopenjpeg/opj_malloc.h @@ -130,22 +130,22 @@ Allocate memory aligned to a 16 byte boundry /**
Reallocate memory blocks.
-@param memblock Pointer to previously allocated memory block
-@param size New size in bytes
+@param m Pointer to previously allocated memory block
+@param s New size in bytes
@return Returns a void pointer to the reallocated (and possibly moved) memory block
*/
#ifdef ALLOC_PERF_OPT
-void * OPJ_CALLCONV opj_realloc(void * _Memory, size_t NewSize);
+void * OPJ_CALLCONV opj_realloc(void * m, size_t s);
#else
#define opj_realloc(m, s) realloc(m, s)
#endif
/**
Deallocates or frees a memory block.
-@param memblock Previously allocated memory block to be freed
+@param m Previously allocated memory block to be freed
*/
#ifdef ALLOC_PERF_OPT
-void OPJ_CALLCONV opj_free(void * _Memory);
+void OPJ_CALLCONV opj_free(void * m);
#else
#define opj_free(m) free(m)
#endif
|
