mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-16 17:34:19 +00:00
Use native tribufu sdk
This commit is contained in:
20
include/tribufu++/sdk.h
Normal file
20
include/tribufu++/sdk.h
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <tribufu/sdk.h>
|
||||
|
||||
namespace tribufu
|
||||
{
|
||||
class TRIBUFU_API TribufuSdk
|
||||
{
|
||||
public:
|
||||
static bool Initialize();
|
||||
static void Shutdown();
|
||||
static bool Ping();
|
||||
static void PingAsync(void *client_date, TribufuSdkPingCallback callback);
|
||||
|
||||
private:
|
||||
static void PingCallbackHandler(void *client_data, bool result);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user