From d7d5fab06f4977246e1a2666f538a23ac761bc27 Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Thu, 5 Nov 2020 00:02:17 -0500 Subject: SceIniFileProcessor: shuffle stars --- include/user/ini_file_processor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/user/ini_file_processor.h') 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 { -- cgit v1.2.3