Files
hakmem/include/hako/types.h

21 lines
319 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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