thunderbrew/src/async/AsyncFile.hpp
2023-01-02 13:17:18 -06:00

14 lines
343 B
C++

#ifndef ASYNC_ASYNC_FILE_HPP
#define ASYNC_ASYNC_FILE_HPP
#include "async/CAsyncObject.hpp"
CAsyncObject* AsyncFileReadAllocObject(void);
void AsyncFileReadDestroyObject(CAsyncObject* object);
void AsyncFileReadInitialize(uint32_t threadSleep, uint32_t handlerTimeout);
void AsyncFileReadObject(CAsyncObject* object, int32_t a2);
#endif