diff options
author | Reiko Asakura | 2020-11-08 23:22:12 -0500 |
---|---|---|
committer | Reiko Asakura | 2020-11-08 23:22:12 -0500 |
commit | 8251ee1a0d92abc92a1d9ba2d07b41b5a4d5f7f1 (patch) | |
tree | ad5b61397543e3f997d1a0b63a8cd2f9e34f5a07 /include/user | |
parent | Additions for SceAudiocodec (diff) | |
download | vds-libraries-8251ee1a0d92abc92a1d9ba2d07b41b5a4d5f7f1.tar.gz |
Add some comments for SceIniFileProcessor
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/ini_file_processor.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |