Files
dnf-utils/ace_sdk/client/include/ace_sdk_client.h
T
2025-12-06 17:59:24 +08:00

22 lines
443 B
C

#ifndef __ACE_SDK_CLIENT_H__
#define __ACE_SDK_CLIENT_H__
#include <stdint.h>
#include "ace_sdk_common.h"
#include "ace_sdk_account.h"
#include "ace_sdk_client_impl.h"
/**
* Initializes the ACE Client SDK.
* This function should be called before any other functions in the ACE Client SDK.
*/
AceSdkResult ace_sdk_client_init();
/**
* Should be called when the game process is exiting.
*/
AceSdkResult ace_sdk_client_deinit();
#endif