add tox private interface (no impl yet)

This commit is contained in:
2023-11-13 13:24:02 +01:00
parent 9cfd920fca
commit d05875f489
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#pragma once
#include <cstdint>
// defines the private interface for tox
struct ToxPrivateI {
virtual ~ToxPrivateI(void) {}
virtual uint16_t toxDHTGetNumCloselist(void) = 0;
virtual uint16_t toxDHTGetNumCloselistAnnounceCapable(void) = 0;
};