aboutsummaryrefslogtreecommitdiff
path: root/s3_worker.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-09-14 00:30:41 +0800
committerMistivia <i@mistivia.com>2025-09-14 00:30:41 +0800
commit35c8f8e94f0346856130b2a96a7c99790796e53f (patch)
tree8fbf1e5e8b99d8cdfa41765f4a9776d4d891acb6 /s3_worker.h
parenta4daf467f871b0e77f07f1071b47b960da7bfba9 (diff)
add aws s3 client
Diffstat (limited to 's3_worker.h')
-rw-r--r--s3_worker.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/s3_worker.h b/s3_worker.h
index 7d3d209..5e88ef5 100644
--- a/s3_worker.h
+++ b/s3_worker.h
@@ -1,12 +1,6 @@
#ifndef S3_WORKER_H_
#define S3_WORKER_H_
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-extern void *s3client;
-
typedef enum {
kUploadTask,
kDeleteTask,
@@ -33,14 +27,4 @@ void* s3_worker_main(void *);
void s3_worker_push(S3Task task);
-void s3client_init();
-
-void s3client_put(const char *filename, const char *object_name);
-
-void s3client_delete(const char *object_name);
-
-#ifdef __cplusplus
-}
-#endif
-
#endif