From 718a92d798998d7588659fada9fd5e25aa4b2aaa Mon Sep 17 00:00:00 2001 From: MistEO Date: Sun, 24 Jul 2022 21:30:49 +0800 Subject: [PATCH] chore: remove useless macro --- src/MeoAssistant/AsstCaller.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MeoAssistant/AsstCaller.cpp b/src/MeoAssistant/AsstCaller.cpp index ea14fa2f8f..cbdd9d2dca 100644 --- a/src/MeoAssistant/AsstCaller.cpp +++ b/src/MeoAssistant/AsstCaller.cpp @@ -152,7 +152,7 @@ unsigned long long AsstGetImage(AsstHandle handle, void* buff, unsigned long lon return data_size; } -unsigned long long ASSTAPI AsstGetUUID(AsstHandle handle, char* buff, unsigned long long buff_size) +unsigned long long AsstGetUUID(AsstHandle handle, char* buff, unsigned long long buff_size) { if (!inited || handle == nullptr || buff == nullptr) { return NullSize; @@ -166,7 +166,7 @@ unsigned long long ASSTAPI AsstGetUUID(AsstHandle handle, char* buff, unsigned l return data_size; } -unsigned long long ASSTAPI AsstGetTasksList(AsstHandle handle, TaskId* buff, unsigned long long buff_size) +unsigned long long AsstGetTasksList(AsstHandle handle, TaskId* buff, unsigned long long buff_size) { if (!inited || handle == nullptr || buff == nullptr) { return NullSize; @@ -180,7 +180,7 @@ unsigned long long ASSTAPI AsstGetTasksList(AsstHandle handle, TaskId* buff, uns return data_size; } -unsigned long long ASSTAPI AsstGetNullSize() +unsigned long long AsstGetNullSize() { return NullSize; }