summaryrefslogtreecommitdiff
path: root/include/user/ini_file_processor.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/user/ini_file_processor.h')
-rw-r--r--include/user/ini_file_processor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/user/ini_file_processor.h b/include/user/ini_file_processor.h
index 8e1ce9c..5915e82 100644
--- a/include/user/ini_file_processor.h
+++ b/include/user/ini_file_processor.h
@@ -18,11 +18,11 @@ namespace Ini {
class MemAllocator {
public:
- typedef void* Allocator(size_t size);
- typedef void Deallocator(void* ptr);
+ typedef void* (*Allocator)(size_t size);
+ typedef void (*Deallocator)(void* ptr);
- Allocator* allocate;
- Deallocator* deallocate;
+ Allocator allocate;
+ Deallocator deallocate;
};
class InitParameter {