File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 3
3
#include <stdlib.h>
4
4
#include <stdio.h>
5
5
6
- TILEDB_EXPORT int32_t _num_of_folders_in_path (
6
+ int32_t _num_of_folders_in_path (
7
7
tiledb_ctx_t * ctx ,
8
8
tiledb_vfs_t * vfs ,
9
9
const char * path ,
@@ -12,7 +12,7 @@ TILEDB_EXPORT int32_t _num_of_folders_in_path(
12
12
return ret_val ;
13
13
}
14
14
15
- TILEDB_EXPORT int32_t _vfs_ls (
15
+ int32_t _vfs_ls (
16
16
tiledb_ctx_t * ctx ,
17
17
tiledb_vfs_t * vfs ,
18
18
const char * path ,
@@ -21,7 +21,7 @@ TILEDB_EXPORT int32_t _vfs_ls(
21
21
return ret_val ;
22
22
}
23
23
24
- TILEDB_EXPORT int32_t _tiledb_object_walk (
24
+ int32_t _tiledb_object_walk (
25
25
tiledb_ctx_t * ctx ,
26
26
const char * path ,
27
27
tiledb_walk_order_t order ,
@@ -30,10 +30,10 @@ TILEDB_EXPORT int32_t _tiledb_object_walk(
30
30
return ret_val ;
31
31
}
32
32
33
- TILEDB_EXPORT int32_t _tiledb_object_ls (
33
+ int32_t _tiledb_object_ls (
34
34
tiledb_ctx_t * ctx ,
35
35
const char * path ,
36
36
void * data ) {
37
37
int32_t ret_val = tiledb_object_ls (ctx , path , objectsInPath , data );
38
38
return ret_val ;
39
- }
39
+ }
Original file line number Diff line number Diff line change @@ -9,27 +9,27 @@ int32_t numOfFragmentsInPath(cchar_t* path, void *data);
9
9
int32_t vfsLs (cchar_t * path , void * data );
10
10
int32_t objectsInPath (cchar_t * path , tiledb_object_t objectType , void * data );
11
11
12
- TILEDB_EXPORT int32_t _num_of_folders_in_path (
12
+ int32_t _num_of_folders_in_path (
13
13
tiledb_ctx_t * ctx ,
14
14
tiledb_vfs_t * vfs ,
15
15
const char * path ,
16
16
void * data );
17
17
18
- TILEDB_EXPORT int32_t _vfs_ls (
18
+ int32_t _vfs_ls (
19
19
tiledb_ctx_t * ctx ,
20
20
tiledb_vfs_t * vfs ,
21
21
const char * path ,
22
22
void * data );
23
23
24
- TILEDB_EXPORT int32_t _tiledb_object_walk (
24
+ int32_t _tiledb_object_walk (
25
25
tiledb_ctx_t * ctx ,
26
26
const char * path ,
27
27
tiledb_walk_order_t order ,
28
28
void * data );
29
29
30
- TILEDB_EXPORT int32_t _tiledb_object_ls (
30
+ int32_t _tiledb_object_ls (
31
31
tiledb_ctx_t * ctx ,
32
32
const char * path ,
33
33
void * data );
34
34
35
- #endif
35
+ #endif
You can’t perform that action at this time.
0 commit comments