Refactor app loading and window management (#609)

This commit is contained in:
Ken Van Hoeylandt
2026-08-11 23:40:59 +02:00
committed by GitHub
parent dc3f6104b8
commit 37c507544b
243 changed files with 16034 additions and 10865 deletions
+21
View File
@@ -0,0 +1,21 @@
// 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