summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReiko Asakura2020-11-08 23:22:12 -0500
committerReiko Asakura2020-11-08 23:22:12 -0500
commit8251ee1a0d92abc92a1d9ba2d07b41b5a4d5f7f1 (patch)
treead5b61397543e3f997d1a0b63a8cd2f9e34f5a07
parentAdditions for SceAudiocodec (diff)
downloadvds-libraries-8251ee1a0d92abc92a1d9ba2d07b41b5a4d5f7f1.tar.gz
Add some comments for SceIniFileProcessor
Diffstat (limited to '')
-rw-r--r--include/user/ini_file_processor.h6
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