2026-08-06 23:54:23 +02:00

21 lines
292 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
enum AppLocationType {
APP_LOCATION_MEMORY,
APP_LOCATION_PATH,
};
struct AppLocation {
enum AppLocationType type;
/** Meaning depends on `type`; see AppLocationType. */
void* location;
};
#ifdef __cplusplus
}
#endif