| 17 | #include "Utility.h" |
| 18 | |
| 19 | IniWorker::IniWorker(std::wstring_view app_name, std::wstring_view file_name, Action action) |
| 20 | : m_app_name{app_name}, |
| 21 | m_file_name{ |
| 22 | file_name |
| 23 | }, |
| 24 | m_action{action} { |
| 25 | } |
| 26 | |
| 27 | constexpr auto initial_buf_size = 256; |
| 28 | constexpr auto max_buf_size = 100 * 1024; |
nothing calls this directly
no outgoing calls
no test coverage detected