Files
hakmem/include/hako/types.h

21 lines
319 B
C
Raw Normal View History

// include/hako/types.h — Minimal Hako CABI types
#ifndef HAKO_TYPES_H
#define HAKO_TYPES_H
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
// Opaque handle for Hako/Box objects (pointersized)
typedef uintptr_t HakoHandle;
#ifdef __cplusplus
}
#endif
#endif // HAKO_TYPES_H