2024-10-24 19:24:54 +01:00
|
|
|
#ifndef _BLUELIB_UUID_H_
|
|
|
|
|
#define _BLUELIB_UUID_H_
|
|
|
|
|
|
2025-08-09 19:57:42 +01:00
|
|
|
#include <blue/ds/uuid.h>
|
2024-10-24 19:24:54 +01:00
|
|
|
|
|
|
|
|
struct b_uuid {
|
2025-08-09 19:57:42 +01:00
|
|
|
struct b_dsref u_base;
|
2024-10-24 19:24:54 +01:00
|
|
|
struct b_uuid_bytes uuid_bytes;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|