Last active
June 19, 2016 07:26
-
-
Save bog-dan-ro/dc9d16fe9f72a08e24b57590c883b964 to your computer and use it in GitHub Desktop.
ZX Database flatbuffers file, it is used to communicate between server services & the emulators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Flat Buffers ZX database tables | |
include "zx_base.fbs"; | |
namespace ZX.DB; | |
table Entry { | |
displayInfo: DisplayInfo; | |
zxFiles: [ZX.File]; | |
scans: [ZX.Scan]; | |
} | |
root_type Entry; | |
file_identifier "BDZX"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment