2
0
mirror of https://github.com/status-im/status-desktop.git synced 2025-01-17 10:01:44 +00:00

16 lines
298 B
C++

#pragma once
#include <string>
#include <memory>
#include <DOtherSide/DOtherSide.h>
extern "C" {
typedef void (*VoidDeleter)(void *);
typedef void (*CharDeleter)(char *);
}
using VoidPointer = std::unique_ptr<void, VoidDeleter>;
using CharPointer = std::unique_ptr<char, CharDeleter>;