mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
22 lines
331 B
C
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
|