mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-20 02:55:38 +08:00
fix.补上漏了的接口实现
This commit is contained in:
@@ -104,6 +104,15 @@ TaskId AsstAppendTask(AsstHandle handle, const char* type, const char* params)
|
||||
}
|
||||
|
||||
return handle->append_task(type, params);
|
||||
}
|
||||
|
||||
bool AsstSetTaskParams(AsstHandle handle, TaskId id, const char* params)
|
||||
{
|
||||
if (!inited || handle == nullptr) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return handle->set_task_params(id, params);
|
||||
}
|
||||
|
||||
unsigned long long AsstGetImage(AsstHandle handle, void* buff, unsigned long long buff_size)
|
||||
|
||||
Reference in New Issue
Block a user