mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
19 lines
338 B
C++
19 lines
338 B
C++
#ifndef _guid_h_
|
|
#define _guid_h_
|
|
|
|
#include <string>
|
|
#include "../types.h"
|
|
#include "valuearray.h"
|
|
|
|
struct FCEU_Guid : public ValueArray<uint8,16>
|
|
{
|
|
void newGuid();
|
|
std::string toString();
|
|
static FCEU_Guid fromString(std::string str);
|
|
static uint8 hexToByte(char** ptrptr);
|
|
void scan(std::string& str);
|
|
};
|
|
|
|
|
|
#endif
|