Kohi Game Engine
uuid.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "defines.h"
4 
8 typedef struct uuid {
9  char value[37];
10 } uuid;
11 
17 void uuid_seed(u64 seed);
18 
This file contains global type definitions which are used throughout the entire engine and applicatio...
#define KAPI
Import/export qualifier.
Definition: defines.h:177
unsigned long long u64
Unsigned 64-bit integer.
Definition: defines.h:28
A universally unique identifier (UUID).
Definition: uuid.h:8
char value[37]
Definition: uuid.h:9
void uuid_seed(u64 seed)
Seeds the uuid generator with the given value.
KAPI uuid uuid_generate(void)
Generates a universally unique identifier (UUID).
struct uuid uuid
A universally unique identifier (UUID).