1 // Copyright 2018 The Fuchsia Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "fidl/library_zx.h"
6 
7 namespace fidl {
8 namespace LibraryZX {
9 
10 const char kFilename[] = "zx.fidl";
11 
12 const char kData[] = R"FIDL(
13 [Internal]
14 library zx;
15 
16 using status = int32;
17 using time = int64;
18 using duration = int64;
19 using koid = uint64;
20 using vaddr = uint64;
21 using paddr = uint64;
22 using paddr32 = uint32;
23 using gpaddr = uint64;
24 using off = uint64;
25 )FIDL";
26 
27 } // namespace LibraryZX
28 } // namespace fidl
29