index
:
mingw-w64-ksocket.git
Windows Kernel <-> User mode socket communication made for "Mingw64 Driver Plus Plus".
log msg
author
committer
range
add/crypto
main
about
summary
refs
log
tree
commit
diff
path:
root
/
samples
/
bugreport
/
eclectic.fbs
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'samples/bugreport/eclectic.fbs')
-rw-r--r--
samples/bugreport/eclectic.fbs
11
1 files changed, 11 insertions, 0 deletions
diff --git a/samples/bugreport/eclectic.fbs b/samples/bugreport/eclectic.fbs
new file mode 100644
index 0000000..ad507e7
--- /dev/null
+++ b/
samples/bugreport/eclectic.fbs
@@ -0,0 +1,11 @@
+namespace Eclectic;
+
+enum Fruit : byte { Banana = -1, Orange = 42 }
+table FooBar {
+ meal : Fruit = Banana;
+ density : long (deprecated);
+ say : string;
+ height : short;
+}
+file_identifier "NOOB";
+root_type FooBar;