build_dll
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#if __cplusplus
|
||||
extern "c" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#pragma once
|
||||
@@ -8,14 +8,19 @@ extern "c" {
|
||||
|
||||
//parses text to binary values
|
||||
Hashtable* DtsodV24_deserialize(char* text);
|
||||
|
||||
//creates text representation of dtsod
|
||||
char* DtsodV24_serialize(Hashtable* dtsod);
|
||||
|
||||
//returns value or UniNull if key not found
|
||||
Unitype DtsodV24_get(Hashtable* dtsod, char* key);
|
||||
|
||||
//adds or sets value
|
||||
void DtsodV24_addOrSet(Hashtable* dtsod, char* key, Unitype value);
|
||||
|
||||
//checks for dtsod contains value or dont
|
||||
bool DtsodV24_contains(Hashtable* dtsod, char* key);
|
||||
|
||||
//replaces value with UniNull if key exists in dtsod
|
||||
bool DtsodV24_remove(Hashtable* dtsod, char* key);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user