diff options
author | Reiko Asakura | 2020-11-05 00:02:17 -0500 |
---|---|---|
committer | Reiko Asakura | 2020-11-05 00:02:17 -0500 |
commit | d7d5fab06f4977246e1a2666f538a23ac761bc27 (patch) | |
tree | d2b05fd85ee582c76392e37a5f9f108f85db77bc /include/user | |
parent | Add prototype sceGxmCheckMappedMemory (diff) | |
download | vds-libraries-d7d5fab06f4977246e1a2666f538a23ac761bc27.tar.gz |
SceIniFileProcessor: shuffle stars
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/ini_file_processor.h | 8 |
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 { |