2026-08-08 16:44:58 +02:00

22 lines
331 B
C

// SPDX-License-Identifier: Apache-2.0
#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