rename native pick to filament_pick to avoid naming clashes

This commit is contained in:
Nick Fisher
2024-05-11 10:09:11 +08:00
parent 6f0df56751
commit f82a9b6222
273 changed files with 39550 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#ifndef UBERARCHIVE_H_
#define UBERARCHIVE_H_
#include <stdint.h>
extern "C" {
extern const uint8_t UBERARCHIVE_PACKAGE[];
extern int UBERARCHIVE_DEFAULT_OFFSET;
extern int UBERARCHIVE_DEFAULT_SIZE;
}
#define UBERARCHIVE_DEFAULT_DATA (UBERARCHIVE_PACKAGE + UBERARCHIVE_DEFAULT_OFFSET)
#endif