Cleanup: Enforce C linkage for internal File Browser header

This will be used by C++ code in the upcoming asset catalog UI commit.
This commit is contained in:
Julian Eisel 2021-09-29 16:59:48 +02:00
parent 367775ac6a
commit 6aac892fad
1 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,10 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* internal exports only */
struct ARegion;
@ -152,3 +156,7 @@ void file_execute_region_panels_register(struct ARegionType *art);
void file_tile_boundbox(const ARegion *region, FileLayout *layout, const int file, rcti *r_bounds);
void file_path_to_ui_path(const char *path, char *r_pathi, int max_size);
#ifdef __cplusplus
}
#endif