12 lines
167 B
C
12 lines
167 B
C
|
|
#ifndef _BLUELIB_UUID_H_
|
||
|
|
#define _BLUELIB_UUID_H_
|
||
|
|
|
||
|
|
#include <blue/object/uuid.h>
|
||
|
|
|
||
|
|
struct b_uuid {
|
||
|
|
struct b_object u_base;
|
||
|
|
struct b_uuid_bytes uuid_bytes;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|