mirror of
https://github.com/micsthepick/dsi2key.git
synced 2025-06-18 16:55:33 -04:00
15 lines
418 B
C++
15 lines
418 B
C++
#pragma once
|
|
|
|
#include <string> // std::string
|
|
#include "iniparser/src/dictionary.h"
|
|
|
|
namespace D2K {namespace iniParser {
|
|
|
|
void dump(dictionary* d, FILE* f);
|
|
std::string getstring(dictionary* d, const std::string& key, const std::string& def);
|
|
int getint(dictionary* d, const std::string& key, int notfound);
|
|
dictionary* load(const std::string& ininame);
|
|
void freedict(dictionary* d);
|
|
|
|
}} // namespace D2K::iniParser
|