2021-10-24 11:46:30 -04:00
|
|
|
#pragma once
|
|
|
|
|
2024-02-20 21:41:37 -05:00
|
|
|
/**
|
|
|
|
** \defgroup file_js File Interface
|
|
|
|
** Exposes an operating system file I/O API to script.
|
|
|
|
** @{
|
|
|
|
*/
|
|
|
|
|
2024-02-08 20:21:57 -05:00
|
|
|
#include <uv.h>
|
|
|
|
|
2023-05-21 17:36:51 -04:00
|
|
|
typedef struct JSContext JSContext;
|
2024-02-08 20:21:57 -05:00
|
|
|
typedef struct _tf_task_t tf_task_t;
|
2021-10-24 11:46:30 -04:00
|
|
|
|
|
|
|
void tf_file_register(JSContext* context);
|
2024-02-08 20:21:57 -05:00
|
|
|
|
|
|
|
void tf_file_stat(tf_task_t* task, const char* path, void (*callback)(tf_task_t* task, const char* path, int result, const uv_stat_t* stat, void* user_data), void* user_data);
|
|
|
|
void tf_file_read(tf_task_t* task, const char* path, void (*callback)(tf_task_t* task, const char* path, int result, const void* data, void* user_data), void* user_data);
|
2024-02-20 21:41:37 -05:00
|
|
|
|
|
|
|
/** @} */
|