-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinihandling.hpp
More file actions
29 lines (24 loc) · 844 Bytes
/
inihandling.hpp
File metadata and controls
29 lines (24 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef INIHANDLING_H
#define INIHANDLING_H
#include <string>
#include <windows.h>
#include "base64.hpp"
#include "libutil.hpp"
#include "noterapi.hpp"
#include "additional.hpp"
#include "definitions.hpp"
#include "constants.hpp"
#include "conversion.hpp"
#include "simplecrypto.hpp"
NOTER_CREDENTIALS getCredentials(char*);
void saveCredentials(NOTER_CREDENTIALS&, char*);
NOTER_CONNECTION_SETTINGS getConnectionSettings(char*);
void saveConnectionSettings(NOTER_CONNECTION_SETTINGS&, char*);
MAINSETTINGS getMainSettings(char*, LIBRARIES *libraries);
void saveMainSettings(MAINSETTINGS&, char*);
void saveWindowCoordinatesSettings(MAINSETTINGS&, char*);
std::string inline getDefaultIniFile(char*);
std::string inline getDefaultIniFile(char* input) {
return getCurrentDirectory(input)+INI_FILE;
}
#endif