summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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