mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
11 lines
119 B
C++
11 lines
119 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
constexpr uint32_t DB_ID_NONE = 0;
|
|
|
|
struct Record
|
|
{
|
|
uint32_t ID = DB_ID_NONE;
|
|
};
|