From 8251ee1a0d92abc92a1d9ba2d07b41b5a4d5f7f1 Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Sun, 8 Nov 2020 23:22:12 -0500 Subject: Add some comments for SceIniFileProcessor --- include/user/ini_file_processor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/user') diff --git a/include/user/ini_file_processor.h b/include/user/ini_file_processor.h index 5915e82..cd8c6a1 100644 --- a/include/user/ini_file_processor.h +++ b/include/user/ini_file_processor.h @@ -171,9 +171,9 @@ public: /** * Parse key and corresponding value, one key per call until eof * - * @param[out] key - buffer to store key string + * @param[out] key - buffer to store key string, must have size at least 0x80 * @param[out] val - buffer to store value string - * @param[in] size - size of output buffers + * @param[in] size - max string size that can fit in val, not including the null terminator * * @return 0 on success, < 0 on error. * @@ -188,7 +188,7 @@ public: int reset(); private: - void *context; + void *m_impl; }; } // namespace Ini -- cgit v1.2.3