2026-02-19 19:22:06 +00:00
|
|
|
#ifndef MANGO_HANDLE_H_
|
|
|
|
|
#define MANGO_HANDLE_H_
|
|
|
|
|
|
|
|
|
|
#include <mango/status.h>
|
|
|
|
|
#include <mango/types.h>
|
|
|
|
|
|
|
|
|
|
extern kern_status_t kern_handle_close(kern_handle_t handle);
|
2026-03-14 22:30:13 +00:00
|
|
|
extern kern_status_t kern_handle_duplicate(
|
|
|
|
|
kern_handle_t handle,
|
|
|
|
|
kern_handle_t *out);
|
2026-02-19 19:22:06 +00:00
|
|
|
|
|
|
|
|
#endif
|