-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc-api_2addon-instance_2_game_8h_source.html
1040 lines (1038 loc) · 234 KB
/
c-api_2addon-instance_2_game_8h_source.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Kodi Development: /home/alwin/Development/Kodi/kodi-N-sync-addon-doxygen/xbmc/addons/kodi-dev-kit/include/kodi/c-api/addon-instance/game.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="kodi-dev.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Kodi Development
 <span id="projectnumber">20.0</span>
</div>
<div id="projectbrief">for Binary and Script based Add-Ons</div>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.svg"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('c-api_2addon-instance_2_game_8h_source.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">game.h</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment"> * Copyright (C) 2014-2020 Team Kodi</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment"> * This file is part of Kodi - https://kodi.tv</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment"> * SPDX-License-Identifier: GPL-2.0-or-later</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment"> * See LICENSES/README.md for more information.</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment"> */</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span>  </div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="preprocessor">#ifndef C_API_ADDONINSTANCE_GAME_H</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="preprocessor">#define C_API_ADDONINSTANCE_GAME_H</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span>  </div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="preprocessor">#include "../addon_base.h"</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span>  </div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="preprocessor">#include <stddef.h></span> <span class="comment">/* size_t */</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>  </div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment">//==============================================================================</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ga370e0babee290007b7a2f4fc29aa84cb"> 19</a></span> <span class="comment"></span><span class="preprocessor">#define DEFAULT_PORT_ID "1"</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment">//------------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span>  </div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="keyword">extern</span> <span class="stringliteral">"C"</span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> {</div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span><span class="preprocessor"></span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span>  </div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00033"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef"> 33</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span>  {</div>
<div class="line"><a name="l00036"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa51b865ee275ae8e392f3e9fd8594fa90"> 36</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa51b865ee275ae8e392f3e9fd8594fa90">GAME_ERROR_NO_ERROR</a>,</div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span>  </div>
<div class="line"><a name="l00039"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa4e208b896403860c888821ae8477bef7"> 39</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa4e208b896403860c888821ae8477bef7">GAME_ERROR_UNKNOWN</a>,</div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>  </div>
<div class="line"><a name="l00042"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efaf397002d4590537629461eff8b98d014"> 42</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efaf397002d4590537629461eff8b98d014">GAME_ERROR_NOT_IMPLEMENTED</a>,</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>  </div>
<div class="line"><a name="l00045"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa2e70ad0417fa9e84872ae765c8f2d991"> 45</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa2e70ad0417fa9e84872ae765c8f2d991">GAME_ERROR_REJECTED</a>,</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>  </div>
<div class="line"><a name="l00048"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa317a70cefc1dba6d3d9ae0634b13225e"> 48</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa317a70cefc1dba6d3d9ae0634b13225e">GAME_ERROR_INVALID_PARAMETERS</a>,</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span>  </div>
<div class="line"><a name="l00051"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa11cf133fce7983a6aa19d68c351c6a80"> 51</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa11cf133fce7983a6aa19d68c351c6a80">GAME_ERROR_FAILED</a>,</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>  </div>
<div class="line"><a name="l00054"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efabbc3840b4a211598c8e63e31731d75e8"> 54</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efabbc3840b4a211598c8e63e31731d75e8">GAME_ERROR_NOT_LOADED</a>,</div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  </div>
<div class="line"><a name="l00057"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa68ead95db6f599ff034d99737ff54c92"> 57</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#ggad0fb9f502cf7b3a84f8edb0dc6cbd6efa68ead95db6f599ff034d99737ff54c92">GAME_ERROR_RESTRICTED</a>,</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>;</div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>  </div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span> <span class="comment"></span> </div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00076"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga57e2a7a29cc0350c25d5ec8b0751d335"> 76</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga57e2a7a29cc0350c25d5ec8b0751d335">GAME_PCM_FORMAT</a></div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span>  {</div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span>  GAME_PCM_FORMAT_UNKNOWN,</div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span>  </div>
<div class="line"><a name="l00081"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga57e2a7a29cc0350c25d5ec8b0751d335a0547c24a828d938ff5aeca4cd8966535"> 81</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga57e2a7a29cc0350c25d5ec8b0751d335a0547c24a828d938ff5aeca4cd8966535">GAME_PCM_FORMAT_S16NE</a>,</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga57e2a7a29cc0350c25d5ec8b0751d335">GAME_PCM_FORMAT</a>;</div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>  </div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00090"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga0c7ad6598f4f3504ce65091e6d64dd24"> 90</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga0c7ad6598f4f3504ce65091e6d64dd24">GAME_AUDIO_CHANNEL</a></div>
<div class="line"><a name="l00091"></a><span class="lineno"> 91</span>  {</div>
<div class="line"><a name="l00093"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6102d6c60cc9c40489802661a1de162a"> 93</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6102d6c60cc9c40489802661a1de162a">GAME_CH_NULL</a>,</div>
<div class="line"><a name="l00094"></a><span class="lineno"> 94</span>  </div>
<div class="line"><a name="l00096"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1a9e621c04f55997791a79ec0789fb28"> 96</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1a9e621c04f55997791a79ec0789fb28">GAME_CH_FL</a>,</div>
<div class="line"><a name="l00097"></a><span class="lineno"> 97</span>  </div>
<div class="line"><a name="l00099"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7cea4b16a688953488b23bce9a7494b3"> 99</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7cea4b16a688953488b23bce9a7494b3">GAME_CH_FR</a>,</div>
<div class="line"><a name="l00100"></a><span class="lineno"> 100</span>  </div>
<div class="line"><a name="l00102"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a3e969423aeac3095708a88dc47454d60"> 102</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a3e969423aeac3095708a88dc47454d60">GAME_CH_FC</a>,</div>
<div class="line"><a name="l00103"></a><span class="lineno"> 103</span>  </div>
<div class="line"><a name="l00105"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aa132934758bc6cd9a6264779694bedc1"> 105</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aa132934758bc6cd9a6264779694bedc1">GAME_CH_LFE</a>,</div>
<div class="line"><a name="l00106"></a><span class="lineno"> 106</span>  </div>
<div class="line"><a name="l00108"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1b0ccefb4b3c8b6a3a452c86c2c8cd4e"> 108</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1b0ccefb4b3c8b6a3a452c86c2c8cd4e">GAME_CH_BL</a>,</div>
<div class="line"><a name="l00109"></a><span class="lineno"> 109</span>  </div>
<div class="line"><a name="l00111"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24afce337737a30a358247b93e88dd5f464"> 111</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24afce337737a30a358247b93e88dd5f464">GAME_CH_BR</a>,</div>
<div class="line"><a name="l00112"></a><span class="lineno"> 112</span>  </div>
<div class="line"><a name="l00114"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24ad871ad638b252cb8d7185e492bb03070"> 114</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24ad871ad638b252cb8d7185e492bb03070">GAME_CH_FLOC</a>,</div>
<div class="line"><a name="l00115"></a><span class="lineno"> 115</span>  </div>
<div class="line"><a name="l00117"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24adbcb33afab92ca3872519b8d80ed6922"> 117</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24adbcb33afab92ca3872519b8d80ed6922">GAME_CH_FROC</a>,</div>
<div class="line"><a name="l00118"></a><span class="lineno"> 118</span>  </div>
<div class="line"><a name="l00120"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7d60d31a70b6163ba198d9ffef5de92a"> 120</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7d60d31a70b6163ba198d9ffef5de92a">GAME_CH_BC</a>,</div>
<div class="line"><a name="l00121"></a><span class="lineno"> 121</span>  </div>
<div class="line"><a name="l00123"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a885aae4c642e51f543bea89e794742fd"> 123</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a885aae4c642e51f543bea89e794742fd">GAME_CH_SL</a>,</div>
<div class="line"><a name="l00124"></a><span class="lineno"> 124</span>  </div>
<div class="line"><a name="l00126"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a70d21a7e40dfa68b4e6e88727007b25a"> 126</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a70d21a7e40dfa68b4e6e88727007b25a">GAME_CH_SR</a>,</div>
<div class="line"><a name="l00127"></a><span class="lineno"> 127</span>  </div>
<div class="line"><a name="l00129"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a54e8e470b53a7b12be3f6f1cc7c74897"> 129</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a54e8e470b53a7b12be3f6f1cc7c74897">GAME_CH_TFL</a>,</div>
<div class="line"><a name="l00130"></a><span class="lineno"> 130</span>  </div>
<div class="line"><a name="l00132"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a78b7a28fa752d6266cdb790498b8b839"> 132</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a78b7a28fa752d6266cdb790498b8b839">GAME_CH_TFR</a>,</div>
<div class="line"><a name="l00133"></a><span class="lineno"> 133</span>  </div>
<div class="line"><a name="l00135"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a0eb0efc2c8ada120c5cd6ee36fd30ad8"> 135</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a0eb0efc2c8ada120c5cd6ee36fd30ad8">GAME_CH_TFC</a>,</div>
<div class="line"><a name="l00136"></a><span class="lineno"> 136</span>  </div>
<div class="line"><a name="l00138"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24acf90def59953c8ecc995bf90bbfdd390"> 138</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24acf90def59953c8ecc995bf90bbfdd390">GAME_CH_TC</a>,</div>
<div class="line"><a name="l00139"></a><span class="lineno"> 139</span>  </div>
<div class="line"><a name="l00141"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aefe47a6c3db21aa5a6c373ea134520c9"> 141</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aefe47a6c3db21aa5a6c373ea134520c9">GAME_CH_TBL</a>,</div>
<div class="line"><a name="l00142"></a><span class="lineno"> 142</span>  </div>
<div class="line"><a name="l00144"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a34a7080d02ceddcee867e383963d3885"> 144</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a34a7080d02ceddcee867e383963d3885">GAME_CH_TBR</a>,</div>
<div class="line"><a name="l00145"></a><span class="lineno"> 145</span>  </div>
<div class="line"><a name="l00147"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6b5c494c6e293dccff7556edab9110bd"> 147</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6b5c494c6e293dccff7556edab9110bd">GAME_CH_TBC</a>,</div>
<div class="line"><a name="l00148"></a><span class="lineno"> 148</span>  </div>
<div class="line"><a name="l00150"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a42e7040283a8e16498f1ea555f19f077"> 150</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a42e7040283a8e16498f1ea555f19f077">GAME_CH_BLOC</a>,</div>
<div class="line"><a name="l00151"></a><span class="lineno"> 151</span>  </div>
<div class="line"><a name="l00153"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aad3aaf573ea44a34fbbe6cef1b069930"> 153</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aad3aaf573ea44a34fbbe6cef1b069930">GAME_CH_BROC</a>,</div>
<div class="line"><a name="l00154"></a><span class="lineno"> 154</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga0c7ad6598f4f3504ce65091e6d64dd24">GAME_AUDIO_CHANNEL</a>;</div>
<div class="line"><a name="l00155"></a><span class="lineno"> 155</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00156"></a><span class="lineno"> 156</span>  </div>
<div class="line"><a name="l00157"></a><span class="lineno"> 157</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00162"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html"> 162</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__properties">game_stream_audio_properties</a></div>
<div class="line"><a name="l00163"></a><span class="lineno"> 163</span>  {</div>
<div class="line"><a name="l00164"></a><span class="lineno"> 164</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga57e2a7a29cc0350c25d5ec8b0751d335">GAME_PCM_FORMAT</a> format;</div>
<div class="line"><a name="l00165"></a><span class="lineno"> 165</span>  <span class="keyword">const</span> <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga0c7ad6598f4f3504ce65091e6d64dd24">GAME_AUDIO_CHANNEL</a>* channel_map;</div>
<div class="line"><a name="l00166"></a><span class="lineno"> 166</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__properties">game_stream_audio_properties</a>;</div>
<div class="line"><a name="l00167"></a><span class="lineno"> 167</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00168"></a><span class="lineno"> 168</span>  </div>
<div class="line"><a name="l00169"></a><span class="lineno"> 169</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00174"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html"> 174</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__packet">game_stream_audio_packet</a></div>
<div class="line"><a name="l00175"></a><span class="lineno"> 175</span>  {</div>
<div class="line"><a name="l00177"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#a579f5164b5b16e18ddcdb0296ef81799"> 177</a></span>  <span class="keyword">const</span> uint8_t* <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#a579f5164b5b16e18ddcdb0296ef81799">data</a>;</div>
<div class="line"><a name="l00178"></a><span class="lineno"> 178</span>  </div>
<div class="line"><a name="l00180"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___audio_stream.html#a854352f53b148adc24983a58a1866d66"> 180</a></span>  <span class="keywordtype">size_t</span> <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#a854352f53b148adc24983a58a1866d66">size</a>;</div>
<div class="line"><a name="l00181"></a><span class="lineno"> 181</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__packet">game_stream_audio_packet</a>;</div>
<div class="line"><a name="l00182"></a><span class="lineno"> 182</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00183"></a><span class="lineno"> 183</span>  </div>
<div class="line"><a name="l00185"></a><span class="lineno"> 185</span>  </div>
<div class="line"><a name="l00186"></a><span class="lineno"> 186</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00195"></a><span class="lineno"> 195</span> <span class="comment"></span> </div>
<div class="line"><a name="l00196"></a><span class="lineno"> 196</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00201"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572"> 201</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572">GAME_PIXEL_FORMAT</a></div>
<div class="line"><a name="l00202"></a><span class="lineno"> 202</span>  {</div>
<div class="line"><a name="l00203"></a><span class="lineno"> 203</span>  GAME_PIXEL_FORMAT_UNKNOWN,</div>
<div class="line"><a name="l00204"></a><span class="lineno"> 204</span>  </div>
<div class="line"><a name="l00206"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572aecbbdd39ab7835b7ddcfd483bee24d40"> 206</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572aecbbdd39ab7835b7ddcfd483bee24d40">GAME_PIXEL_FORMAT_0RGB8888</a>,</div>
<div class="line"><a name="l00207"></a><span class="lineno"> 207</span>  </div>
<div class="line"><a name="l00209"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572a2f02ed272a178888b87879e00a54eadb"> 209</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572a2f02ed272a178888b87879e00a54eadb">GAME_PIXEL_FORMAT_RGB565</a>,</div>
<div class="line"><a name="l00210"></a><span class="lineno"> 210</span>  </div>
<div class="line"><a name="l00212"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572ada626632914d0292c1390a0b5754f4c0"> 212</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572ada626632914d0292c1390a0b5754f4c0">GAME_PIXEL_FORMAT_0RGB1555</a>,</div>
<div class="line"><a name="l00213"></a><span class="lineno"> 213</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572">GAME_PIXEL_FORMAT</a>;</div>
<div class="line"><a name="l00214"></a><span class="lineno"> 214</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00215"></a><span class="lineno"> 215</span>  </div>
<div class="line"><a name="l00216"></a><span class="lineno"> 216</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00221"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10a84be972c12f87ae2a665782efdfd0"> 221</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10a84be972c12f87ae2a665782efdfd0">GAME_VIDEO_ROTATION</a></div>
<div class="line"><a name="l00222"></a><span class="lineno"> 222</span>  {</div>
<div class="line"><a name="l00224"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a0882ea702bc66526bfa4b1d39eaebf9b"> 224</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a0882ea702bc66526bfa4b1d39eaebf9b">GAME_VIDEO_ROTATION_0</a>,</div>
<div class="line"><a name="l00225"></a><span class="lineno"> 225</span>  </div>
<div class="line"><a name="l00227"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a126351f7395b4453c9130755ec23f05c"> 227</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a126351f7395b4453c9130755ec23f05c">GAME_VIDEO_ROTATION_90_CCW</a>,</div>
<div class="line"><a name="l00228"></a><span class="lineno"> 228</span>  </div>
<div class="line"><a name="l00230"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a00384040133ceae30d7cbfffe57342bd"> 230</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a00384040133ceae30d7cbfffe57342bd">GAME_VIDEO_ROTATION_180_CCW</a>,</div>
<div class="line"><a name="l00231"></a><span class="lineno"> 231</span>  </div>
<div class="line"><a name="l00233"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a28f69bd9599eefac4d65e2726f697ea5"> 233</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10a84be972c12f87ae2a665782efdfd0a28f69bd9599eefac4d65e2726f697ea5">GAME_VIDEO_ROTATION_270_CCW</a>,</div>
<div class="line"><a name="l00234"></a><span class="lineno"> 234</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10a84be972c12f87ae2a665782efdfd0">GAME_VIDEO_ROTATION</a>;</div>
<div class="line"><a name="l00235"></a><span class="lineno"> 235</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00236"></a><span class="lineno"> 236</span>  </div>
<div class="line"><a name="l00237"></a><span class="lineno"> 237</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00242"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html"> 242</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__properties">game_stream_video_properties</a></div>
<div class="line"><a name="l00243"></a><span class="lineno"> 243</span>  {</div>
<div class="line"><a name="l00245"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#ae58cee32b99bdf0ef4b56bf7e76a4238"> 245</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572">GAME_PIXEL_FORMAT</a> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ae58cee32b99bdf0ef4b56bf7e76a4238">format</a>;</div>
<div class="line"><a name="l00246"></a><span class="lineno"> 246</span>  </div>
<div class="line"><a name="l00248"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#a892bb65fda99eae2fa1aa88bf9fbed11"> 248</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#a892bb65fda99eae2fa1aa88bf9fbed11">nominal_width</a>;</div>
<div class="line"><a name="l00249"></a><span class="lineno"> 249</span>  </div>
<div class="line"><a name="l00251"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#aed93af630fab310ac8ef9a7996d52cd8"> 251</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#aed93af630fab310ac8ef9a7996d52cd8">nominal_height</a>;</div>
<div class="line"><a name="l00252"></a><span class="lineno"> 252</span>  </div>
<div class="line"><a name="l00254"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#ac94bbe4c69d1d19af62fa63e54d5b760"> 254</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ac94bbe4c69d1d19af62fa63e54d5b760">max_width</a>;</div>
<div class="line"><a name="l00255"></a><span class="lineno"> 255</span>  </div>
<div class="line"><a name="l00257"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#aa359881e928cd3f4c3386bc004a0ba94"> 257</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#aa359881e928cd3f4c3386bc004a0ba94">max_height</a>;</div>
<div class="line"><a name="l00258"></a><span class="lineno"> 258</span>  </div>
<div class="line"><a name="l00262"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#a5584bdb427edfe29e0c0c3753b619161"> 262</a></span>  <span class="keywordtype">float</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#a5584bdb427edfe29e0c0c3753b619161">aspect_ratio</a>;</div>
<div class="line"><a name="l00263"></a><span class="lineno"> 263</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__properties">game_stream_video_properties</a>;</div>
<div class="line"><a name="l00264"></a><span class="lineno"> 264</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00265"></a><span class="lineno"> 265</span>  </div>
<div class="line"><a name="l00266"></a><span class="lineno"> 266</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00271"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html"> 271</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__packet">game_stream_video_packet</a></div>
<div class="line"><a name="l00272"></a><span class="lineno"> 272</span>  {</div>
<div class="line"><a name="l00274"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#aca34d28e3d8bcbcadb8edb4e3af24f8c"> 274</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#aca34d28e3d8bcbcadb8edb4e3af24f8c">width</a>;</div>
<div class="line"><a name="l00275"></a><span class="lineno"> 275</span>  </div>
<div class="line"><a name="l00277"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#ab2e78c61905b4419fcc7b4cfc500fe85"> 277</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ab2e78c61905b4419fcc7b4cfc500fe85">height</a>;</div>
<div class="line"><a name="l00278"></a><span class="lineno"> 278</span>  </div>
<div class="line"><a name="l00280"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#aa808196005a0b5247450a34a552c0440"> 280</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10a84be972c12f87ae2a665782efdfd0">GAME_VIDEO_ROTATION</a> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#aa808196005a0b5247450a34a552c0440">rotation</a>;</div>
<div class="line"><a name="l00281"></a><span class="lineno"> 281</span>  </div>
<div class="line"><a name="l00283"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#a579f5164b5b16e18ddcdb0296ef81799"> 283</a></span>  <span class="keyword">const</span> uint8_t* <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#a579f5164b5b16e18ddcdb0296ef81799">data</a>;</div>
<div class="line"><a name="l00284"></a><span class="lineno"> 284</span>  </div>
<div class="line"><a name="l00286"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___video_stream.html#a854352f53b148adc24983a58a1866d66"> 286</a></span>  <span class="keywordtype">size_t</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#a854352f53b148adc24983a58a1866d66">size</a>;</div>
<div class="line"><a name="l00287"></a><span class="lineno"> 287</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__packet">game_stream_video_packet</a>;</div>
<div class="line"><a name="l00288"></a><span class="lineno"> 288</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00289"></a><span class="lineno"> 289</span>  </div>
<div class="line"><a name="l00291"></a><span class="lineno"> 291</span>  </div>
<div class="line"><a name="l00292"></a><span class="lineno"> 292</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00298"></a><span class="lineno"> 298</span> <span class="comment"></span> </div>
<div class="line"><a name="l00299"></a><span class="lineno"> 299</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00302"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#gac0851e563ca9dfc6597f66a4b0f8feee"> 302</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#gac0851e563ca9dfc6597f66a4b0f8feee">GAME_HW_CONTEXT_TYPE</a></div>
<div class="line"><a name="l00303"></a><span class="lineno"> 303</span>  {</div>
<div class="line"><a name="l00305"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeadc612fc2185c29187e26116b9ec9fe7c"> 305</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeadc612fc2185c29187e26116b9ec9fe7c">GAME_HW_CONTEXT_NONE</a>,</div>
<div class="line"><a name="l00306"></a><span class="lineno"> 306</span>  </div>
<div class="line"><a name="l00308"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaf20a20d6c78eb519c24f45f0e93d3b0a"> 308</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaf20a20d6c78eb519c24f45f0e93d3b0a">GAME_HW_CONTEXT_OPENGL</a>,</div>
<div class="line"><a name="l00309"></a><span class="lineno"> 309</span>  </div>
<div class="line"><a name="l00311"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea32fb4e8a788824cb6d173db3df401374"> 311</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea32fb4e8a788824cb6d173db3df401374">GAME_HW_CONTEXT_OPENGLES2</a>,</div>
<div class="line"><a name="l00312"></a><span class="lineno"> 312</span>  </div>
<div class="line"><a name="l00314"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea4d064ab2f2866282cc8477de4ea306a4"> 314</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea4d064ab2f2866282cc8477de4ea306a4">GAME_HW_CONTEXT_OPENGL_CORE</a>,</div>
<div class="line"><a name="l00315"></a><span class="lineno"> 315</span>  </div>
<div class="line"><a name="l00317"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaac2e4d301117a1f06a469f0229285d31"> 317</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaac2e4d301117a1f06a469f0229285d31">GAME_HW_CONTEXT_OPENGLES3</a>,</div>
<div class="line"><a name="l00318"></a><span class="lineno"> 318</span>  </div>
<div class="line"><a name="l00320"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea94cbcb09a02237f64793aeecd618b9eb"> 320</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea94cbcb09a02237f64793aeecd618b9eb">GAME_HW_CONTEXT_OPENGLES_VERSION</a>,</div>
<div class="line"><a name="l00321"></a><span class="lineno"> 321</span>  </div>
<div class="line"><a name="l00323"></a><span class="lineno"> 323</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea64a8baeb7b41308bd2c724eaffdc061b">GAME_HW_CONTEXT_VULKAN</a></div>
<div class="line"><a name="l00324"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea64a8baeb7b41308bd2c724eaffdc061b"> 324</a></span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#gac0851e563ca9dfc6597f66a4b0f8feee">GAME_HW_CONTEXT_TYPE</a>;</div>
<div class="line"><a name="l00325"></a><span class="lineno"> 325</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00326"></a><span class="lineno"> 326</span>  </div>
<div class="line"><a name="l00327"></a><span class="lineno"> 327</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00330"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html"> 330</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__properties">game_stream_hw_framebuffer_properties</a></div>
<div class="line"><a name="l00331"></a><span class="lineno"> 331</span>  {</div>
<div class="line"><a name="l00334"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a9c3a34ffc196049b5535335935b53fde"> 334</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#gac0851e563ca9dfc6597f66a4b0f8feee">GAME_HW_CONTEXT_TYPE</a> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a9c3a34ffc196049b5535335935b53fde">context_type</a>;</div>
<div class="line"><a name="l00335"></a><span class="lineno"> 335</span>  </div>
<div class="line"><a name="l00340"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a3c3a47e93d564d08b506d18291d5772a"> 340</a></span>  <span class="keywordtype">bool</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a3c3a47e93d564d08b506d18291d5772a">depth</a>;</div>
<div class="line"><a name="l00341"></a><span class="lineno"> 341</span>  </div>
<div class="line"><a name="l00349"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#af01d4df622c64194e81ba777b3abc4b9"> 349</a></span>  <span class="keywordtype">bool</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#af01d4df622c64194e81ba777b3abc4b9">stencil</a>;</div>
<div class="line"><a name="l00350"></a><span class="lineno"> 350</span>  </div>
<div class="line"><a name="l00357"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a80e85b810ae38c95621e67b51e47f9bb"> 357</a></span>  <span class="keywordtype">bool</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a80e85b810ae38c95621e67b51e47f9bb">bottom_left_origin</a>;</div>
<div class="line"><a name="l00358"></a><span class="lineno"> 358</span>  </div>
<div class="line"><a name="l00360"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a6540c97b3ede3afedc3eddb99863867e"> 360</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a6540c97b3ede3afedc3eddb99863867e">version_major</a>;</div>
<div class="line"><a name="l00361"></a><span class="lineno"> 361</span>  </div>
<div class="line"><a name="l00363"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a2b05ec596787f44679509e7558525ed5"> 363</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a2b05ec596787f44679509e7558525ed5">version_minor</a>;</div>
<div class="line"><a name="l00364"></a><span class="lineno"> 364</span>  </div>
<div class="line"><a name="l00376"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a154b5d760b70fc969de1a2301ce90dc4"> 376</a></span>  <span class="keywordtype">bool</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a154b5d760b70fc969de1a2301ce90dc4">cache_context</a>;</div>
<div class="line"><a name="l00377"></a><span class="lineno"> 377</span>  </div>
<div class="line"><a name="l00379"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#adc79ea799f6f6ee7f7c300185412aaa0"> 379</a></span>  <span class="keywordtype">bool</span> <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#adc79ea799f6f6ee7f7c300185412aaa0">debug_context</a>;</div>
<div class="line"><a name="l00380"></a><span class="lineno"> 380</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__properties">game_stream_hw_framebuffer_properties</a>;</div>
<div class="line"><a name="l00381"></a><span class="lineno"> 381</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00382"></a><span class="lineno"> 382</span>  </div>
<div class="line"><a name="l00383"></a><span class="lineno"> 383</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00386"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html"> 386</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__buffer">game_stream_hw_framebuffer_buffer</a></div>
<div class="line"><a name="l00387"></a><span class="lineno"> 387</span>  {</div>
<div class="line"><a name="l00389"></a><span class="lineno"> 389</span>  uintptr_t framebuffer;</div>
<div class="line"><a name="l00390"></a><span class="lineno"> 390</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__buffer">game_stream_hw_framebuffer_buffer</a>;</div>
<div class="line"><a name="l00391"></a><span class="lineno"> 391</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00392"></a><span class="lineno"> 392</span>  </div>
<div class="line"><a name="l00393"></a><span class="lineno"> 393</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00396"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html"> 396</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__packet">game_stream_hw_framebuffer_packet</a></div>
<div class="line"><a name="l00397"></a><span class="lineno"> 397</span>  {</div>
<div class="line"><a name="l00399"></a><span class="lineno"> 399</span>  uintptr_t framebuffer;</div>
<div class="line"><a name="l00400"></a><span class="lineno"> 400</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__packet">game_stream_hw_framebuffer_packet</a>;</div>
<div class="line"><a name="l00401"></a><span class="lineno"> 401</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00402"></a><span class="lineno"> 402</span>  </div>
<div class="line"><a name="l00403"></a><span class="lineno"> 403</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00406"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ga7e99c45dc3001a78b3d5fcdb38515d53"> 406</a></span> <span class="comment"></span> <span class="keyword">typedef</span> void (*<a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ga7e99c45dc3001a78b3d5fcdb38515d53">game_proc_address_t</a>)(void);</div>
<div class="line"><a name="l00407"></a><span class="lineno"> 407</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00408"></a><span class="lineno"> 408</span>  </div>
<div class="line"><a name="l00410"></a><span class="lineno"> 410</span>  </div>
<div class="line"><a name="l00411"></a><span class="lineno"> 411</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00417"></a><span class="lineno"> 417</span> <span class="comment"></span> </div>
<div class="line"><a name="l00418"></a><span class="lineno"> 418</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00423"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#gad6b6ccf8a1f314e1f53464cb9e186c1a"> 423</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__properties">game_stream_video_properties</a> <a class="code" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#gad6b6ccf8a1f314e1f53464cb9e186c1a">game_stream_sw_framebuffer_properties</a>;</div>
<div class="line"><a name="l00424"></a><span class="lineno"> 424</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00425"></a><span class="lineno"> 425</span>  </div>
<div class="line"><a name="l00426"></a><span class="lineno"> 426</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00429"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html"> 429</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#structgame__stream__sw__framebuffer__buffer">game_stream_sw_framebuffer_buffer</a></div>
<div class="line"><a name="l00430"></a><span class="lineno"> 430</span>  {</div>
<div class="line"><a name="l00431"></a><span class="lineno"> 431</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572">GAME_PIXEL_FORMAT</a> format;</div>
<div class="line"><a name="l00432"></a><span class="lineno"> 432</span>  uint8_t* data;</div>
<div class="line"><a name="l00433"></a><span class="lineno"> 433</span>  <span class="keywordtype">size_t</span> size;</div>
<div class="line"><a name="l00434"></a><span class="lineno"> 434</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#structgame__stream__sw__framebuffer__buffer">game_stream_sw_framebuffer_buffer</a>;</div>
<div class="line"><a name="l00435"></a><span class="lineno"> 435</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00436"></a><span class="lineno"> 436</span>  </div>
<div class="line"><a name="l00437"></a><span class="lineno"> 437</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00442"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#ga7428503b2f280c81f589b42d6261b6cf"> 442</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__packet">game_stream_video_packet</a> <a class="code" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#ga7428503b2f280c81f589b42d6261b6cf">game_stream_sw_framebuffer_packet</a>;</div>
<div class="line"><a name="l00443"></a><span class="lineno"> 443</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00444"></a><span class="lineno"> 444</span>  </div>
<div class="line"><a name="l00446"></a><span class="lineno"> 446</span>  </div>
<div class="line"><a name="l00447"></a><span class="lineno"> 447</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00453"></a><span class="lineno"> 453</span> <span class="comment"></span> </div>
<div class="line"><a name="l00454"></a><span class="lineno"> 454</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00457"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d"> 457</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a></div>
<div class="line"><a name="l00458"></a><span class="lineno"> 458</span>  {</div>
<div class="line"><a name="l00460"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da42000ed48e70ee5438fa7e06bf9314b8"> 460</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da42000ed48e70ee5438fa7e06bf9314b8">GAME_STREAM_UNKNOWN</a>,</div>
<div class="line"><a name="l00461"></a><span class="lineno"> 461</span>  </div>
<div class="line"><a name="l00463"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da1074b0ca6005e344cbf3d516aba9b8b9"> 463</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da1074b0ca6005e344cbf3d516aba9b8b9">GAME_STREAM_AUDIO</a>,</div>
<div class="line"><a name="l00464"></a><span class="lineno"> 464</span>  </div>
<div class="line"><a name="l00466"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da009cecd365c4319d04dcbceaad64ac4d"> 466</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da009cecd365c4319d04dcbceaad64ac4d">GAME_STREAM_VIDEO</a>,</div>
<div class="line"><a name="l00467"></a><span class="lineno"> 467</span>  </div>
<div class="line"><a name="l00469"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da3a1b28b3910d740b9e6a4f91b1b9466b"> 469</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da3a1b28b3910d740b9e6a4f91b1b9466b">GAME_STREAM_HW_FRAMEBUFFER</a>,</div>
<div class="line"><a name="l00470"></a><span class="lineno"> 470</span>  </div>
<div class="line"><a name="l00472"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4dac6a67646021ebd918523043949b8ec66"> 472</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4dac6a67646021ebd918523043949b8ec66">GAME_STREAM_SW_FRAMEBUFFER</a>,</div>
<div class="line"><a name="l00473"></a><span class="lineno"> 473</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a>;</div>
<div class="line"><a name="l00474"></a><span class="lineno"> 474</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00475"></a><span class="lineno"> 475</span>  </div>
<div class="line"><a name="l00476"></a><span class="lineno"> 476</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00482"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 482</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__properties">game_stream_properties</a></div>
<div class="line"><a name="l00483"></a><span class="lineno"> 483</span>  {</div>
<div class="line"><a name="l00485"></a><span class="lineno"> 485</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a> type;</div>
<div class="line"><a name="l00486"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 486</a></span>  <span class="keyword">union</span></div>
<div class="line"><a name="l00487"></a><span class="lineno"> 487</span>  {</div>
<div class="line"><a name="l00489"></a><span class="lineno"> 489</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__properties">game_stream_audio_properties</a> audio;</div>
<div class="line"><a name="l00490"></a><span class="lineno"> 490</span>  </div>
<div class="line"><a name="l00492"></a><span class="lineno"> 492</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__properties">game_stream_video_properties</a> video;</div>
<div class="line"><a name="l00493"></a><span class="lineno"> 493</span>  </div>
<div class="line"><a name="l00495"></a><span class="lineno"> 495</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__properties">game_stream_hw_framebuffer_properties</a> hw_framebuffer;</div>
<div class="line"><a name="l00496"></a><span class="lineno"> 496</span>  </div>
<div class="line"><a name="l00498"></a><span class="lineno"> 498</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__properties">game_stream_sw_framebuffer_properties</a> sw_framebuffer;</div>
<div class="line"><a name="l00499"></a><span class="lineno"> 499</span>  };</div>
<div class="line"><a name="l00500"></a><span class="lineno"> 500</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__properties">game_stream_properties</a>;</div>
<div class="line"><a name="l00501"></a><span class="lineno"> 501</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00502"></a><span class="lineno"> 502</span>  </div>
<div class="line"><a name="l00503"></a><span class="lineno"> 503</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00506"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 506</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__buffer">game_stream_buffer</a></div>
<div class="line"><a name="l00507"></a><span class="lineno"> 507</span>  {</div>
<div class="line"><a name="l00509"></a><span class="lineno"> 509</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a> type;</div>
<div class="line"><a name="l00510"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 510</a></span>  <span class="keyword">union</span></div>
<div class="line"><a name="l00511"></a><span class="lineno"> 511</span>  {</div>
<div class="line"><a name="l00513"></a><span class="lineno"> 513</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__buffer">game_stream_hw_framebuffer_buffer</a> hw_framebuffer;</div>
<div class="line"><a name="l00514"></a><span class="lineno"> 514</span>  </div>
<div class="line"><a name="l00516"></a><span class="lineno"> 516</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#structgame__stream__sw__framebuffer__buffer">game_stream_sw_framebuffer_buffer</a> sw_framebuffer;</div>
<div class="line"><a name="l00517"></a><span class="lineno"> 517</span>  };</div>
<div class="line"><a name="l00518"></a><span class="lineno"> 518</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__buffer">game_stream_buffer</a>;</div>
<div class="line"><a name="l00519"></a><span class="lineno"> 519</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00520"></a><span class="lineno"> 520</span>  </div>
<div class="line"><a name="l00521"></a><span class="lineno"> 521</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00528"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 528</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__packet">game_stream_packet</a></div>
<div class="line"><a name="l00529"></a><span class="lineno"> 529</span>  {</div>
<div class="line"><a name="l00531"></a><span class="lineno"> 531</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a> type;</div>
<div class="line"><a name="l00532"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___stream_types.html"> 532</a></span>  <span class="keyword">union</span></div>
<div class="line"><a name="l00533"></a><span class="lineno"> 533</span>  {</div>
<div class="line"><a name="l00535"></a><span class="lineno"> 535</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__packet">game_stream_audio_packet</a> audio;</div>
<div class="line"><a name="l00536"></a><span class="lineno"> 536</span>  </div>
<div class="line"><a name="l00538"></a><span class="lineno"> 538</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__packet">game_stream_video_packet</a> video;</div>
<div class="line"><a name="l00539"></a><span class="lineno"> 539</span>  </div>
<div class="line"><a name="l00541"></a><span class="lineno"> 541</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__packet">game_stream_hw_framebuffer_packet</a> hw_framebuffer;</div>
<div class="line"><a name="l00542"></a><span class="lineno"> 542</span>  </div>
<div class="line"><a name="l00544"></a><span class="lineno"> 544</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___video_stream.html#structgame__stream__video__packet">game_stream_sw_framebuffer_packet</a> sw_framebuffer;</div>
<div class="line"><a name="l00545"></a><span class="lineno"> 545</span>  };</div>
<div class="line"><a name="l00546"></a><span class="lineno"> 546</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__packet">game_stream_packet</a>;</div>
<div class="line"><a name="l00547"></a><span class="lineno"> 547</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00548"></a><span class="lineno"> 548</span>  </div>
<div class="line"><a name="l00550"></a><span class="lineno"> 550</span>  </div>
<div class="line"><a name="l00551"></a><span class="lineno"> 551</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00557"></a><span class="lineno"> 557</span> <span class="comment"></span> </div>
<div class="line"><a name="l00558"></a><span class="lineno"> 558</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00562"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gac33f5cc9e9651c9cb1693afb1b884e60"> 562</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gac33f5cc9e9651c9cb1693afb1b884e60">GAME_REGION</a></div>
<div class="line"><a name="l00563"></a><span class="lineno"> 563</span>  {</div>
<div class="line"><a name="l00565"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60acdbaf601ad806397966ab91c3fe92906"> 565</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60acdbaf601ad806397966ab91c3fe92906">GAME_REGION_UNKNOWN</a>,</div>
<div class="line"><a name="l00566"></a><span class="lineno"> 566</span>  </div>
<div class="line"><a name="l00568"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a10914ba7f3133f8b6755a5c85f7993d9"> 568</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a10914ba7f3133f8b6755a5c85f7993d9">GAME_REGION_NTSC</a>,</div>
<div class="line"><a name="l00569"></a><span class="lineno"> 569</span>  </div>
<div class="line"><a name="l00571"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a34500c83bc74a3a7795f696eee3c23cf"> 571</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a34500c83bc74a3a7795f696eee3c23cf">GAME_REGION_PAL</a>,</div>
<div class="line"><a name="l00572"></a><span class="lineno"> 572</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gac33f5cc9e9651c9cb1693afb1b884e60">GAME_REGION</a>;</div>
<div class="line"><a name="l00573"></a><span class="lineno"> 573</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00574"></a><span class="lineno"> 574</span>  </div>
<div class="line"><a name="l00575"></a><span class="lineno"> 575</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00580"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gae227c65af490275c3e3c9b885457ac38"> 580</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gae227c65af490275c3e3c9b885457ac38">SPECIAL_GAME_TYPE</a></div>
<div class="line"><a name="l00581"></a><span class="lineno"> 581</span>  {</div>
<div class="line"><a name="l00583"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a3801976e9c6eabc095cb79f162207d2b"> 583</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a3801976e9c6eabc095cb79f162207d2b">SPECIAL_GAME_TYPE_BSX</a>,</div>
<div class="line"><a name="l00584"></a><span class="lineno"> 584</span>  </div>
<div class="line"><a name="l00586"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a5c5d3a3152b3155d0e13bad102fb8feb"> 586</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a5c5d3a3152b3155d0e13bad102fb8feb">SPECIAL_GAME_TYPE_BSX_SLOTTED</a>,</div>
<div class="line"><a name="l00587"></a><span class="lineno"> 587</span>  </div>
<div class="line"><a name="l00589"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a7e478e50e8d6d5a834a84cc9b6d0c6b8"> 589</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a7e478e50e8d6d5a834a84cc9b6d0c6b8">SPECIAL_GAME_TYPE_SUFAMI_TURBO</a>,</div>
<div class="line"><a name="l00590"></a><span class="lineno"> 590</span>  </div>
<div class="line"><a name="l00592"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a2277738f3dcf28e715b821cd1a1b13c3"> 592</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a2277738f3dcf28e715b821cd1a1b13c3">SPECIAL_GAME_TYPE_SUPER_GAME_BOY</a>,</div>
<div class="line"><a name="l00593"></a><span class="lineno"> 593</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gae227c65af490275c3e3c9b885457ac38">SPECIAL_GAME_TYPE</a>;</div>
<div class="line"><a name="l00594"></a><span class="lineno"> 594</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00595"></a><span class="lineno"> 595</span>  </div>
<div class="line"><a name="l00596"></a><span class="lineno"> 596</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00599"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gaf52d501cc2ba9de915c80313887b2a87"> 599</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gaf52d501cc2ba9de915c80313887b2a87">GAME_MEMORY</a></div>
<div class="line"><a name="l00600"></a><span class="lineno"> 600</span>  {</div>
<div class="line"><a name="l00603"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a8e267e3914828680a021da1ed95782da"> 603</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a8e267e3914828680a021da1ed95782da">GAME_MEMORY_MASK</a> = 0xff,</div>
<div class="line"><a name="l00604"></a><span class="lineno"> 604</span>  </div>
<div class="line"><a name="l00610"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc"> 610</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a> = 0,</div>
<div class="line"><a name="l00611"></a><span class="lineno"> 611</span>  </div>
<div class="line"><a name="l00615"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aee1f88bb30294e0fb1abfde743aa2179"> 615</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aee1f88bb30294e0fb1abfde743aa2179">GAME_MEMORY_RTC</a> = 1,</div>
<div class="line"><a name="l00616"></a><span class="lineno"> 616</span>  </div>
<div class="line"><a name="l00618"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87adf084a07f6c64056646adcadd4b816ae"> 618</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87adf084a07f6c64056646adcadd4b816ae">GAME_MEMORY_SYSTEM_RAM</a> = 2,</div>
<div class="line"><a name="l00619"></a><span class="lineno"> 619</span>  </div>
<div class="line"><a name="l00621"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2c6c4a7bb4c0c00d7f36d3050cf2ce60"> 621</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2c6c4a7bb4c0c00d7f36d3050cf2ce60">GAME_MEMORY_VIDEO_RAM</a> = 3,</div>
<div class="line"><a name="l00622"></a><span class="lineno"> 622</span>  </div>
<div class="line"><a name="l00624"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87ae86273e7135c3531bd7a1f9e7ffc7bc8"> 624</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87ae86273e7135c3531bd7a1f9e7ffc7bc8">GAME_MEMORY_SNES_BSX_RAM</a> = ((1 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a>),</div>
<div class="line"><a name="l00625"></a><span class="lineno"> 625</span>  </div>
<div class="line"><a name="l00627"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a87e03e0dc1ffe7f160b1bf6fc65939a7"> 627</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a87e03e0dc1ffe7f160b1bf6fc65939a7">GAME_MEMORY_SNES_BSX_PRAM</a> = ((2 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a>),</div>
<div class="line"><a name="l00628"></a><span class="lineno"> 628</span>  </div>
<div class="line"><a name="l00630"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2977cb4f078f24798c70350dd4b3d130"> 630</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2977cb4f078f24798c70350dd4b3d130">GAME_MEMORY_SNES_SUFAMI_TURBO_A_RAM</a> = ((3 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a>),</div>
<div class="line"><a name="l00631"></a><span class="lineno"> 631</span>  </div>
<div class="line"><a name="l00633"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a425262be2dcb40cf7007ca4b615cbc90"> 633</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a425262be2dcb40cf7007ca4b615cbc90">GAME_MEMORY_SNES_SUFAMI_TURBO_B_RAM</a> = ((4 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a>),</div>
<div class="line"><a name="l00634"></a><span class="lineno"> 634</span>  </div>
<div class="line"><a name="l00636"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aefcb7f6ce6ba05f0d93c80ffe34f1013"> 636</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aefcb7f6ce6ba05f0d93c80ffe34f1013">GAME_MEMORY_SNES_GAME_BOY_RAM</a> = ((5 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a>),</div>
<div class="line"><a name="l00637"></a><span class="lineno"> 637</span>  </div>
<div class="line"><a name="l00639"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a49006a1d9bcbcc34d851a6e031af4d9d"> 639</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a49006a1d9bcbcc34d851a6e031af4d9d">GAME_MEMORY_SNES_GAME_BOY_RTC</a> = ((6 << 8) | <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aee1f88bb30294e0fb1abfde743aa2179">GAME_MEMORY_RTC</a>),</div>
<div class="line"><a name="l00640"></a><span class="lineno"> 640</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gaf52d501cc2ba9de915c80313887b2a87">GAME_MEMORY</a>;</div>
<div class="line"><a name="l00641"></a><span class="lineno"> 641</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00642"></a><span class="lineno"> 642</span>  </div>
<div class="line"><a name="l00643"></a><span class="lineno"> 643</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00645"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#ga0f464ca45f942699d2d030d021db77d4"> 645</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ga0f464ca45f942699d2d030d021db77d4">GAME_SIMD</a></div>
<div class="line"><a name="l00646"></a><span class="lineno"> 646</span>  {</div>
<div class="line"><a name="l00648"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a31f7b598f56e83ae2cceaed3d782f0d2"> 648</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a31f7b598f56e83ae2cceaed3d782f0d2">GAME_SIMD_SSE</a> = (1 << 0),</div>
<div class="line"><a name="l00649"></a><span class="lineno"> 649</span>  </div>
<div class="line"><a name="l00651"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aaf125b4616b6682ba060bec7c0deb92a"> 651</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aaf125b4616b6682ba060bec7c0deb92a">GAME_SIMD_SSE2</a> = (1 << 1),</div>
<div class="line"><a name="l00652"></a><span class="lineno"> 652</span>  </div>
<div class="line"><a name="l00654"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ade631cf4e6f6725d77a3999e31e4aa94"> 654</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ade631cf4e6f6725d77a3999e31e4aa94">GAME_SIMD_VMX</a> = (1 << 2),</div>
<div class="line"><a name="l00655"></a><span class="lineno"> 655</span>  </div>
<div class="line"><a name="l00657"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a2aedc185ddbac35121d82034b5b5cfb5"> 657</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a2aedc185ddbac35121d82034b5b5cfb5">GAME_SIMD_VMX128</a> = (1 << 3),</div>
<div class="line"><a name="l00658"></a><span class="lineno"> 658</span>  </div>
<div class="line"><a name="l00660"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4abe64454b16abdb37c59389e5d23d06eb"> 660</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4abe64454b16abdb37c59389e5d23d06eb">GAME_SIMD_AVX</a> = (1 << 4),</div>
<div class="line"><a name="l00661"></a><span class="lineno"> 661</span>  </div>
<div class="line"><a name="l00663"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a7ad6ce4f7dcf9e88e4ff4ea9a47835"> 663</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a7ad6ce4f7dcf9e88e4ff4ea9a47835">GAME_SIMD_NEON</a> = (1 << 5),</div>
<div class="line"><a name="l00664"></a><span class="lineno"> 664</span>  </div>
<div class="line"><a name="l00666"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ab6941e6e1578a600bcfe6d64be9ab0e8"> 666</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ab6941e6e1578a600bcfe6d64be9ab0e8">GAME_SIMD_SSE3</a> = (1 << 6),</div>
<div class="line"><a name="l00667"></a><span class="lineno"> 667</span>  </div>
<div class="line"><a name="l00669"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa892f28cbc097226f2b3315cda4abebe"> 669</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa892f28cbc097226f2b3315cda4abebe">GAME_SIMD_SSSE3</a> = (1 << 7),</div>
<div class="line"><a name="l00670"></a><span class="lineno"> 670</span>  </div>
<div class="line"><a name="l00672"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ad741787f2009cc982d166d6c8f6af205"> 672</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ad741787f2009cc982d166d6c8f6af205">GAME_SIMD_MMX</a> = (1 << 8),</div>
<div class="line"><a name="l00673"></a><span class="lineno"> 673</span>  </div>
<div class="line"><a name="l00675"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ac513ad613c3691c3b988e08df05db203"> 675</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ac513ad613c3691c3b988e08df05db203">GAME_SIMD_MMXEXT</a> = (1 << 9),</div>
<div class="line"><a name="l00676"></a><span class="lineno"> 676</span>  </div>
<div class="line"><a name="l00678"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a6e16c7b8d4355415270c1883440260"> 678</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a6e16c7b8d4355415270c1883440260">GAME_SIMD_SSE4</a> = (1 << 10),</div>
<div class="line"><a name="l00679"></a><span class="lineno"> 679</span>  </div>
<div class="line"><a name="l00681"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa5a2a6d04eec2e62c97f0038bf8e6c53"> 681</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa5a2a6d04eec2e62c97f0038bf8e6c53">GAME_SIMD_SSE42</a> = (1 << 11),</div>
<div class="line"><a name="l00682"></a><span class="lineno"> 682</span>  </div>
<div class="line"><a name="l00684"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a8122a63c5ac3a6e8b53ffb88373de7b9"> 684</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a8122a63c5ac3a6e8b53ffb88373de7b9">GAME_SIMD_AVX2</a> = (1 << 12),</div>
<div class="line"><a name="l00685"></a><span class="lineno"> 685</span>  </div>
<div class="line"><a name="l00687"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a15bebc33fc9bcf4902e617d6e659d406"> 687</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a15bebc33fc9bcf4902e617d6e659d406">GAME_SIMD_VFPU</a> = (1 << 13),</div>
<div class="line"><a name="l00688"></a><span class="lineno"> 688</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#ga0f464ca45f942699d2d030d021db77d4">GAME_SIMD</a>;</div>
<div class="line"><a name="l00689"></a><span class="lineno"> 689</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00690"></a><span class="lineno"> 690</span>  </div>
<div class="line"><a name="l00692"></a><span class="lineno"> 692</span>  </div>
<div class="line"><a name="l00693"></a><span class="lineno"> 693</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l00699"></a><span class="lineno"> 699</span> <span class="comment"></span> </div>
<div class="line"><a name="l00700"></a><span class="lineno"> 700</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00702"></a><span class="lineno"> 702</span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> GAME_INPUT_EVENT_SOURCE</div>
<div class="line"><a name="l00703"></a><span class="lineno"> 703</span>  {</div>
<div class="line"><a name="l00705"></a><span class="lineno"> 705</span>  GAME_INPUT_EVENT_DIGITAL_BUTTON,</div>
<div class="line"><a name="l00706"></a><span class="lineno"> 706</span>  </div>
<div class="line"><a name="l00708"></a><span class="lineno"> 708</span>  GAME_INPUT_EVENT_ANALOG_BUTTON,</div>
<div class="line"><a name="l00709"></a><span class="lineno"> 709</span>  </div>
<div class="line"><a name="l00711"></a><span class="lineno"> 711</span>  GAME_INPUT_EVENT_AXIS,</div>
<div class="line"><a name="l00712"></a><span class="lineno"> 712</span>  </div>
<div class="line"><a name="l00714"></a><span class="lineno"> 714</span>  GAME_INPUT_EVENT_ANALOG_STICK,</div>
<div class="line"><a name="l00715"></a><span class="lineno"> 715</span>  </div>
<div class="line"><a name="l00717"></a><span class="lineno"> 717</span>  GAME_INPUT_EVENT_ACCELEROMETER,</div>
<div class="line"><a name="l00718"></a><span class="lineno"> 718</span>  </div>
<div class="line"><a name="l00720"></a><span class="lineno"> 720</span>  GAME_INPUT_EVENT_KEY,</div>
<div class="line"><a name="l00721"></a><span class="lineno"> 721</span>  </div>
<div class="line"><a name="l00723"></a><span class="lineno"> 723</span>  GAME_INPUT_EVENT_RELATIVE_POINTER,</div>
<div class="line"><a name="l00724"></a><span class="lineno"> 724</span>  </div>
<div class="line"><a name="l00726"></a><span class="lineno"> 726</span>  GAME_INPUT_EVENT_ABSOLUTE_POINTER,</div>
<div class="line"><a name="l00727"></a><span class="lineno"> 727</span>  </div>
<div class="line"><a name="l00729"></a><span class="lineno"> 729</span>  GAME_INPUT_EVENT_MOTOR,</div>
<div class="line"><a name="l00730"></a><span class="lineno"> 730</span>  } GAME_INPUT_EVENT_SOURCE;</div>
<div class="line"><a name="l00731"></a><span class="lineno"> 731</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00732"></a><span class="lineno"> 732</span>  </div>
<div class="line"><a name="l00733"></a><span class="lineno"> 733</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00735"></a><span class="lineno"> 735</span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> GAME_KEY_MOD</div>
<div class="line"><a name="l00736"></a><span class="lineno"> 736</span>  {</div>
<div class="line"><a name="l00738"></a><span class="lineno"> 738</span>  GAME_KEY_MOD_NONE = 0x0000,</div>
<div class="line"><a name="l00739"></a><span class="lineno"> 739</span>  </div>
<div class="line"><a name="l00741"></a><span class="lineno"> 741</span>  GAME_KEY_MOD_SHIFT = 0x0001,</div>
<div class="line"><a name="l00742"></a><span class="lineno"> 742</span>  </div>
<div class="line"><a name="l00744"></a><span class="lineno"> 744</span>  GAME_KEY_MOD_CTRL = 0x0002,</div>
<div class="line"><a name="l00745"></a><span class="lineno"> 745</span>  </div>
<div class="line"><a name="l00747"></a><span class="lineno"> 747</span>  GAME_KEY_MOD_ALT = 0x0004,</div>
<div class="line"><a name="l00748"></a><span class="lineno"> 748</span>  </div>
<div class="line"><a name="l00750"></a><span class="lineno"> 750</span>  GAME_KEY_MOD_META = 0x0008,</div>
<div class="line"><a name="l00751"></a><span class="lineno"> 751</span>  </div>
<div class="line"><a name="l00753"></a><span class="lineno"> 753</span>  GAME_KEY_MOD_SUPER = 0x0010,</div>
<div class="line"><a name="l00754"></a><span class="lineno"> 754</span>  </div>
<div class="line"><a name="l00756"></a><span class="lineno"> 756</span>  GAME_KEY_MOD_NUMLOCK = 0x0100,</div>
<div class="line"><a name="l00757"></a><span class="lineno"> 757</span>  </div>
<div class="line"><a name="l00759"></a><span class="lineno"> 759</span>  GAME_KEY_MOD_CAPSLOCK = 0x0200,</div>
<div class="line"><a name="l00760"></a><span class="lineno"> 760</span>  </div>
<div class="line"><a name="l00762"></a><span class="lineno"> 762</span>  GAME_KEY_MOD_SCROLLOCK = 0x0400,</div>
<div class="line"><a name="l00763"></a><span class="lineno"> 763</span>  } GAME_KEY_MOD;</div>
<div class="line"><a name="l00764"></a><span class="lineno"> 764</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00765"></a><span class="lineno"> 765</span>  </div>
<div class="line"><a name="l00766"></a><span class="lineno"> 766</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00768"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7"> 768</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7">GAME_PORT_TYPE</a></div>
<div class="line"><a name="l00769"></a><span class="lineno"> 769</span>  {</div>
<div class="line"><a name="l00771"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a8c662f98bdabede3a825c906c52060e9"> 771</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a8c662f98bdabede3a825c906c52060e9">GAME_PORT_UNKNOWN</a>,</div>
<div class="line"><a name="l00772"></a><span class="lineno"> 772</span>  </div>
<div class="line"><a name="l00774"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a7cfa1a53f311d736fc8e1e209950d770"> 774</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a7cfa1a53f311d736fc8e1e209950d770">GAME_PORT_KEYBOARD</a>,</div>
<div class="line"><a name="l00775"></a><span class="lineno"> 775</span>  </div>
<div class="line"><a name="l00777"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a51292d32f9ebbd6387df19643146cb05"> 777</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a51292d32f9ebbd6387df19643146cb05">GAME_PORT_MOUSE</a>,</div>
<div class="line"><a name="l00778"></a><span class="lineno"> 778</span>  </div>
<div class="line"><a name="l00780"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a6a56f34d6f853b3f1aa0af440cdc5a21"> 780</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a6a56f34d6f853b3f1aa0af440cdc5a21">GAME_PORT_CONTROLLER</a>,</div>
<div class="line"><a name="l00781"></a><span class="lineno"> 781</span>  } <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7">GAME_PORT_TYPE</a>;</div>
<div class="line"><a name="l00782"></a><span class="lineno"> 782</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00783"></a><span class="lineno"> 783</span>  </div>
<div class="line"><a name="l00792"></a><span class="lineno"> 792</span>  <span class="keyword">typedef</span> <span class="keyword">struct </span>game_controller_layout</div>
<div class="line"><a name="l00793"></a><span class="lineno"> 793</span>  {</div>
<div class="line"><a name="l00794"></a><span class="lineno"> 794</span>  <span class="keywordtype">char</span>* controller_id;</div>
<div class="line"><a name="l00795"></a><span class="lineno"> 795</span>  <span class="keywordtype">bool</span> provides_input; <span class="comment">// False for multitaps</span></div>
<div class="line"><a name="l00796"></a><span class="lineno"> 796</span>  <span class="keywordtype">char</span>** digital_buttons;</div>
<div class="line"><a name="l00797"></a><span class="lineno"> 797</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> digital_button_count;</div>
<div class="line"><a name="l00798"></a><span class="lineno"> 798</span>  <span class="keywordtype">char</span>** analog_buttons;</div>
<div class="line"><a name="l00799"></a><span class="lineno"> 799</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> analog_button_count;</div>
<div class="line"><a name="l00800"></a><span class="lineno"> 800</span>  <span class="keywordtype">char</span>** analog_sticks;</div>
<div class="line"><a name="l00801"></a><span class="lineno"> 801</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> analog_stick_count;</div>
<div class="line"><a name="l00802"></a><span class="lineno"> 802</span>  <span class="keywordtype">char</span>** accelerometers;</div>
<div class="line"><a name="l00803"></a><span class="lineno"> 803</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> accelerometer_count;</div>
<div class="line"><a name="l00804"></a><span class="lineno"> 804</span>  <span class="keywordtype">char</span>** keys;</div>
<div class="line"><a name="l00805"></a><span class="lineno"> 805</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> key_count;</div>
<div class="line"><a name="l00806"></a><span class="lineno"> 806</span>  <span class="keywordtype">char</span>** rel_pointers;</div>
<div class="line"><a name="l00807"></a><span class="lineno"> 807</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> rel_pointer_count;</div>
<div class="line"><a name="l00808"></a><span class="lineno"> 808</span>  <span class="keywordtype">char</span>** abs_pointers;</div>
<div class="line"><a name="l00809"></a><span class="lineno"> 809</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> abs_pointer_count;</div>
<div class="line"><a name="l00810"></a><span class="lineno"> 810</span>  <span class="keywordtype">char</span>** motors;</div>
<div class="line"><a name="l00811"></a><span class="lineno"> 811</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> motor_count;</div>
<div class="line"><a name="l00812"></a><span class="lineno"> 812</span>  } ATTRIBUTE_PACKED game_controller_layout;</div>
<div class="line"><a name="l00815"></a><span class="lineno"> 815</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a>;</div>
<div class="line"><a name="l00816"></a><span class="lineno"> 816</span>  </div>
<div class="line"><a name="l00817"></a><span class="lineno"> 817</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00819"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 819</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__device">game_input_device</a></div>
<div class="line"><a name="l00820"></a><span class="lineno"> 820</span>  {</div>
<div class="line"><a name="l00822"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#a950bf7c1ef84921edf82fe7e7fcb756a"> 822</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#a950bf7c1ef84921edf82fe7e7fcb756a">controller_id</a>;</div>
<div class="line"><a name="l00823"></a><span class="lineno"> 823</span>  </div>
<div class="line"><a name="l00825"></a><span class="lineno"> 825</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* port_address;</div>
<div class="line"><a name="l00826"></a><span class="lineno"> 826</span>  </div>
<div class="line"><a name="l00828"></a><span class="lineno"> 828</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a>* available_ports;</div>
<div class="line"><a name="l00829"></a><span class="lineno"> 829</span>  </div>
<div class="line"><a name="l00831"></a><span class="lineno"> 831</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> port_count;</div>
<div class="line"><a name="l00832"></a><span class="lineno"> 832</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__device">game_input_device</a>;</div>
<div class="line"><a name="l00833"></a><span class="lineno"> 833</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00834"></a><span class="lineno"> 834</span>  </div>
<div class="line"><a name="l00835"></a><span class="lineno"> 835</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00842"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 842</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a></div>
<div class="line"><a name="l00843"></a><span class="lineno"> 843</span>  {</div>
<div class="line"><a name="l00845"></a><span class="lineno"> 845</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7">GAME_PORT_TYPE</a> type;</div>
<div class="line"><a name="l00846"></a><span class="lineno"> 846</span>  </div>
<div class="line"><a name="l00848"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#ae0c1039fda3c3113d40e2761e2defecb"> 848</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ae0c1039fda3c3113d40e2761e2defecb">port_id</a>;</div>
<div class="line"><a name="l00849"></a><span class="lineno"> 849</span>  </div>
<div class="line"><a name="l00851"></a><span class="lineno"> 851</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__device">game_input_device</a>* accepted_devices;</div>
<div class="line"><a name="l00852"></a><span class="lineno"> 852</span>  </div>
<div class="line"><a name="l00854"></a><span class="lineno"> 854</span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> device_count;</div>
<div class="line"><a name="l00855"></a><span class="lineno"> 855</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a>;</div>
<div class="line"><a name="l00856"></a><span class="lineno"> 856</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00857"></a><span class="lineno"> 857</span>  </div>
<div class="line"><a name="l00858"></a><span class="lineno"> 858</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00865"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 865</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__topology">game_input_topology</a></div>
<div class="line"><a name="l00866"></a><span class="lineno"> 866</span>  {</div>
<div class="line"><a name="l00868"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#a4239d1ee0492303d5c0f887425d40477"> 868</a></span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a>* <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#a4239d1ee0492303d5c0f887425d40477">ports</a>;</div>
<div class="line"><a name="l00869"></a><span class="lineno"> 869</span>  </div>
<div class="line"><a name="l00871"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#a3bdcbe88317cbb9920d90e3036f132d3"> 871</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#a3bdcbe88317cbb9920d90e3036f132d3">port_count</a>;</div>
<div class="line"><a name="l00872"></a><span class="lineno"> 872</span>  </div>
<div class="line"><a name="l00874"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#ad4a353829ac4dedea6c2e5b5613c23f6"> 874</a></span>  <span class="keywordtype">int</span> <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ad4a353829ac4dedea6c2e5b5613c23f6">player_limit</a>;</div>
<div class="line"><a name="l00875"></a><span class="lineno"> 875</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__topology">game_input_topology</a>;</div>
<div class="line"><a name="l00876"></a><span class="lineno"> 876</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00877"></a><span class="lineno"> 877</span>  </div>
<div class="line"><a name="l00878"></a><span class="lineno"> 878</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00880"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 880</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__digital__button__event">game_digital_button_event</a></div>
<div class="line"><a name="l00881"></a><span class="lineno"> 881</span>  {</div>
<div class="line"><a name="l00883"></a><span class="lineno"> 883</span>  <span class="keywordtype">bool</span> pressed;</div>
<div class="line"><a name="l00884"></a><span class="lineno"> 884</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__digital__button__event">game_digital_button_event</a>;</div>
<div class="line"><a name="l00885"></a><span class="lineno"> 885</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00886"></a><span class="lineno"> 886</span>  </div>
<div class="line"><a name="l00887"></a><span class="lineno"> 887</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00889"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 889</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__button__event">game_analog_button_event</a></div>
<div class="line"><a name="l00890"></a><span class="lineno"> 890</span>  {</div>
<div class="line"><a name="l00892"></a><span class="lineno"> 892</span>  <span class="keywordtype">float</span> magnitude;</div>
<div class="line"><a name="l00893"></a><span class="lineno"> 893</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__button__event">game_analog_button_event</a>;</div>
<div class="line"><a name="l00894"></a><span class="lineno"> 894</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00895"></a><span class="lineno"> 895</span>  </div>
<div class="line"><a name="l00896"></a><span class="lineno"> 896</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00898"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 898</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__axis__event">game_axis_event</a></div>
<div class="line"><a name="l00899"></a><span class="lineno"> 899</span>  {</div>
<div class="line"><a name="l00901"></a><span class="lineno"> 901</span>  <span class="keywordtype">float</span> position;</div>
<div class="line"><a name="l00902"></a><span class="lineno"> 902</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__axis__event">game_axis_event</a>;</div>
<div class="line"><a name="l00903"></a><span class="lineno"> 903</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00904"></a><span class="lineno"> 904</span>  </div>
<div class="line"><a name="l00905"></a><span class="lineno"> 905</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00907"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 907</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__stick__event">game_analog_stick_event</a></div>
<div class="line"><a name="l00908"></a><span class="lineno"> 908</span>  {</div>
<div class="line"><a name="l00910"></a><span class="lineno"> 910</span>  <span class="keywordtype">float</span> x;</div>
<div class="line"><a name="l00911"></a><span class="lineno"> 911</span>  </div>
<div class="line"><a name="l00913"></a><span class="lineno"> 913</span>  <span class="keywordtype">float</span> y;</div>
<div class="line"><a name="l00914"></a><span class="lineno"> 914</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__stick__event">game_analog_stick_event</a>;</div>
<div class="line"><a name="l00915"></a><span class="lineno"> 915</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00916"></a><span class="lineno"> 916</span>  </div>
<div class="line"><a name="l00917"></a><span class="lineno"> 917</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00919"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 919</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__accelerometer__event">game_accelerometer_event</a></div>
<div class="line"><a name="l00920"></a><span class="lineno"> 920</span>  {</div>
<div class="line"><a name="l00922"></a><span class="lineno"> 922</span>  <span class="keywordtype">float</span> x;</div>
<div class="line"><a name="l00923"></a><span class="lineno"> 923</span>  </div>
<div class="line"><a name="l00925"></a><span class="lineno"> 925</span>  <span class="keywordtype">float</span> y;</div>
<div class="line"><a name="l00926"></a><span class="lineno"> 926</span>  </div>
<div class="line"><a name="l00928"></a><span class="lineno"> 928</span>  <span class="keywordtype">float</span> z;</div>
<div class="line"><a name="l00929"></a><span class="lineno"> 929</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__accelerometer__event">game_accelerometer_event</a>;</div>
<div class="line"><a name="l00930"></a><span class="lineno"> 930</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00931"></a><span class="lineno"> 931</span>  </div>
<div class="line"><a name="l00932"></a><span class="lineno"> 932</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00934"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 934</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__key__event">game_key_event</a></div>
<div class="line"><a name="l00935"></a><span class="lineno"> 935</span>  {</div>
<div class="line"><a name="l00937"></a><span class="lineno"> 937</span>  <span class="keywordtype">bool</span> pressed;</div>
<div class="line"><a name="l00938"></a><span class="lineno"> 938</span>  </div>
<div class="line"><a name="l00944"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html#aaae9388f37ef1126f69786fbf8e3da01"> 944</a></span>  uint32_t <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#aaae9388f37ef1126f69786fbf8e3da01">unicode</a>;</div>
<div class="line"><a name="l00945"></a><span class="lineno"> 945</span>  </div>
<div class="line"><a name="l00947"></a><span class="lineno"> 947</span>  GAME_KEY_MOD modifiers;</div>
<div class="line"><a name="l00948"></a><span class="lineno"> 948</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__key__event">game_key_event</a>;</div>
<div class="line"><a name="l00949"></a><span class="lineno"> 949</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00950"></a><span class="lineno"> 950</span>  </div>
<div class="line"><a name="l00951"></a><span class="lineno"> 951</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00953"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 953</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__rel__pointer__event">game_rel_pointer_event</a></div>
<div class="line"><a name="l00954"></a><span class="lineno"> 954</span>  {</div>
<div class="line"><a name="l00956"></a><span class="lineno"> 956</span>  <span class="keywordtype">int</span> x;</div>
<div class="line"><a name="l00957"></a><span class="lineno"> 957</span>  </div>
<div class="line"><a name="l00959"></a><span class="lineno"> 959</span>  <span class="keywordtype">int</span> y;</div>
<div class="line"><a name="l00960"></a><span class="lineno"> 960</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__rel__pointer__event">game_rel_pointer_event</a>;</div>
<div class="line"><a name="l00961"></a><span class="lineno"> 961</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00962"></a><span class="lineno"> 962</span>  </div>
<div class="line"><a name="l00963"></a><span class="lineno"> 963</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00965"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 965</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__abs__pointer__event">game_abs_pointer_event</a></div>
<div class="line"><a name="l00966"></a><span class="lineno"> 966</span>  {</div>
<div class="line"><a name="l00968"></a><span class="lineno"> 968</span>  <span class="keywordtype">bool</span> pressed;</div>
<div class="line"><a name="l00969"></a><span class="lineno"> 969</span>  </div>
<div class="line"><a name="l00971"></a><span class="lineno"> 971</span>  <span class="keywordtype">float</span> x;</div>
<div class="line"><a name="l00972"></a><span class="lineno"> 972</span>  </div>
<div class="line"><a name="l00974"></a><span class="lineno"> 974</span>  <span class="keywordtype">float</span> y;</div>
<div class="line"><a name="l00975"></a><span class="lineno"> 975</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__abs__pointer__event">game_abs_pointer_event</a>;</div>
<div class="line"><a name="l00976"></a><span class="lineno"> 976</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00977"></a><span class="lineno"> 977</span>  </div>
<div class="line"><a name="l00978"></a><span class="lineno"> 978</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00980"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 980</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__motor__event">game_motor_event</a></div>
<div class="line"><a name="l00981"></a><span class="lineno"> 981</span>  {</div>
<div class="line"><a name="l00983"></a><span class="lineno"> 983</span>  <span class="keywordtype">float</span> magnitude;</div>
<div class="line"><a name="l00984"></a><span class="lineno"> 984</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__motor__event">game_motor_event</a>;</div>
<div class="line"><a name="l00985"></a><span class="lineno"> 985</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00986"></a><span class="lineno"> 986</span>  </div>
<div class="line"><a name="l00987"></a><span class="lineno"> 987</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l00989"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 989</a></span> <span class="comment"></span> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__event">game_input_event</a></div>
<div class="line"><a name="l00990"></a><span class="lineno"> 990</span>  {</div>
<div class="line"><a name="l00992"></a><span class="lineno"> 992</span>  GAME_INPUT_EVENT_SOURCE type;</div>
<div class="line"><a name="l00993"></a><span class="lineno"> 993</span>  </div>
<div class="line"><a name="l00995"></a><span class="lineno"> 995</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* controller_id;</div>
<div class="line"><a name="l00996"></a><span class="lineno"> 996</span>  </div>
<div class="line"><a name="l00998"></a><span class="lineno"> 998</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7">GAME_PORT_TYPE</a> port_type;</div>
<div class="line"><a name="l00999"></a><span class="lineno"> 999</span>  </div>
<div class="line"><a name="l01001"></a><span class="lineno"> 1001</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* port_address;</div>
<div class="line"><a name="l01002"></a><span class="lineno"> 1002</span>  </div>
<div class="line"><a name="l01004"></a><span class="lineno"> 1004</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* feature_name;</div>
<div class="line"><a name="l01005"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___input_types.html"> 1005</a></span>  <span class="keyword">union</span></div>
<div class="line"><a name="l01006"></a><span class="lineno"> 1006</span>  {</div>
<div class="line"><a name="l01008"></a><span class="lineno"> 1008</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__digital__button__event">game_digital_button_event</a> digital_button;</div>
<div class="line"><a name="l01009"></a><span class="lineno"> 1009</span>  </div>
<div class="line"><a name="l01011"></a><span class="lineno"> 1011</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__button__event">game_analog_button_event</a> analog_button;</div>
<div class="line"><a name="l01012"></a><span class="lineno"> 1012</span>  </div>
<div class="line"><a name="l01014"></a><span class="lineno"> 1014</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__axis__event">game_axis_event</a> axis;</div>
<div class="line"><a name="l01015"></a><span class="lineno"> 1015</span>  </div>
<div class="line"><a name="l01017"></a><span class="lineno"> 1017</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__stick__event">game_analog_stick_event</a> analog_stick;</div>
<div class="line"><a name="l01018"></a><span class="lineno"> 1018</span>  </div>
<div class="line"><a name="l01020"></a><span class="lineno"> 1020</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__accelerometer__event">game_accelerometer_event</a> accelerometer;</div>
<div class="line"><a name="l01021"></a><span class="lineno"> 1021</span>  </div>
<div class="line"><a name="l01023"></a><span class="lineno"> 1023</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__key__event">game_key_event</a> key;</div>
<div class="line"><a name="l01024"></a><span class="lineno"> 1024</span>  </div>
<div class="line"><a name="l01026"></a><span class="lineno"> 1026</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__rel__pointer__event">game_rel_pointer_event</a> rel_pointer;</div>
<div class="line"><a name="l01027"></a><span class="lineno"> 1027</span>  </div>
<div class="line"><a name="l01029"></a><span class="lineno"> 1029</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__abs__pointer__event">game_abs_pointer_event</a> abs_pointer;</div>
<div class="line"><a name="l01030"></a><span class="lineno"> 1030</span>  </div>
<div class="line"><a name="l01032"></a><span class="lineno"> 1032</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__motor__event">game_motor_event</a> motor;</div>
<div class="line"><a name="l01033"></a><span class="lineno"> 1033</span>  };</div>
<div class="line"><a name="l01034"></a><span class="lineno"> 1034</span>  } ATTRIBUTE_PACKED <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__event">game_input_event</a>;</div>
<div class="line"><a name="l01035"></a><span class="lineno"> 1035</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l01036"></a><span class="lineno"> 1036</span>  </div>
<div class="line"><a name="l01038"></a><span class="lineno"> 1038</span>  </div>
<div class="line"><a name="l01039"></a><span class="lineno"> 1039</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l01045"></a><span class="lineno"> 1045</span> <span class="comment"></span> </div>
<div class="line"><a name="l01046"></a><span class="lineno"> 1046</span>  <span class="comment">//============================================================================</span></div>
<div class="line"><a name="l01049"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___environment_types.html"> 1049</a></span> <span class="comment"></span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___environment_types.html#structgame__system__timing">game_system_timing</a></div>
<div class="line"><a name="l01050"></a><span class="lineno"> 1050</span>  {</div>
<div class="line"><a name="l01052"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___environment_types.html#a63da2a617b72a1630998a4d8b4d26cd3"> 1052</a></span>  <span class="keywordtype">double</span> <a class="code" href="group__cpp__kodi__addon__game___defs___environment_types.html#a63da2a617b72a1630998a4d8b4d26cd3">fps</a>;</div>
<div class="line"><a name="l01053"></a><span class="lineno"> 1053</span>  </div>
<div class="line"><a name="l01055"></a><span class="lineno"><a class="line" href="group__cpp__kodi__addon__game___defs___environment_types.html#a5cd2077a80052e0e93450f6259fa5f92"> 1055</a></span>  <span class="keywordtype">double</span> <a class="code" href="group__cpp__kodi__addon__game___defs___environment_types.html#a5cd2077a80052e0e93450f6259fa5f92">sample_rate</a>;</div>
<div class="line"><a name="l01056"></a><span class="lineno"> 1056</span>  };</div>
<div class="line"><a name="l01057"></a><span class="lineno"> 1057</span>  <span class="comment">//----------------------------------------------------------------------------</span></div>
<div class="line"><a name="l01058"></a><span class="lineno"> 1058</span>  </div>
<div class="line"><a name="l01060"></a><span class="lineno"> 1060</span>  </div>
<div class="line"><a name="l01061"></a><span class="lineno"> 1061</span>  </div>
<div class="line"><a name="l01062"></a><span class="lineno"> 1062</span>  <span class="comment">//--==----==----==----==----==----==----==----==----==----==----==----==----==--</span></div>
<div class="line"><a name="l01063"></a><span class="lineno"> 1063</span>  </div>
<div class="line"><a name="l01069"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html"> 1069</a></span>  <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct_addon_props___game.html">AddonProps_Game</a></div>
<div class="line"><a name="l01070"></a><span class="lineno"> 1070</span>  {</div>
<div class="line"><a name="l01074"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a7e06e218be6a0ff0f1b387363dfb643f"> 1074</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="struct_addon_props___game.html#a7e06e218be6a0ff0f1b387363dfb643f">game_client_dll_path</a>;</div>
<div class="line"><a name="l01075"></a><span class="lineno"> 1075</span>  </div>
<div class="line"><a name="l01079"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#ab5a0257b876443f7358367d79acbde0b"> 1079</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>** <a class="code" href="struct_addon_props___game.html#ab5a0257b876443f7358367d79acbde0b">proxy_dll_paths</a>;</div>
<div class="line"><a name="l01080"></a><span class="lineno"> 1080</span>  </div>
<div class="line"><a name="l01084"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a35be46f1a9f34eccc02eca2442e32ef1"> 1084</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="struct_addon_props___game.html#a35be46f1a9f34eccc02eca2442e32ef1">proxy_dll_count</a>;</div>
<div class="line"><a name="l01085"></a><span class="lineno"> 1085</span>  </div>
<div class="line"><a name="l01090"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a0138ad68adc25e386567f93ae11584d9"> 1090</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>** <a class="code" href="struct_addon_props___game.html#a0138ad68adc25e386567f93ae11584d9">resource_directories</a>;</div>
<div class="line"><a name="l01091"></a><span class="lineno"> 1091</span>  </div>
<div class="line"><a name="l01095"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#ad364ba757ea047a99138cc116e4d2686"> 1095</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="struct_addon_props___game.html#ad364ba757ea047a99138cc116e4d2686">resource_directory_count</a>;</div>
<div class="line"><a name="l01096"></a><span class="lineno"> 1096</span>  </div>
<div class="line"><a name="l01102"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a59457b1e6b0b76384b927bb06a717e82"> 1102</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="struct_addon_props___game.html#a59457b1e6b0b76384b927bb06a717e82">profile_directory</a>;</div>
<div class="line"><a name="l01103"></a><span class="lineno"> 1103</span>  </div>
<div class="line"><a name="l01107"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a8e8e2f9080b614d0cdf295b2b85541c1"> 1107</a></span>  <span class="keywordtype">bool</span> <a class="code" href="struct_addon_props___game.html#a8e8e2f9080b614d0cdf295b2b85541c1">supports_vfs</a>;</div>
<div class="line"><a name="l01108"></a><span class="lineno"> 1108</span>  </div>
<div class="line"><a name="l01112"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#ac6209137d42d2820bfd247a0c57f1dc3"> 1112</a></span>  <span class="keyword">const</span> <span class="keywordtype">char</span>** <a class="code" href="struct_addon_props___game.html#ac6209137d42d2820bfd247a0c57f1dc3">extensions</a>;</div>
<div class="line"><a name="l01113"></a><span class="lineno"> 1113</span>  </div>
<div class="line"><a name="l01117"></a><span class="lineno"><a class="line" href="struct_addon_props___game.html#a817c34f57faa15e2d9d1bdd2b1a90cf3"> 1117</a></span>  <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="struct_addon_props___game.html#a817c34f57faa15e2d9d1bdd2b1a90cf3">extension_count</a>;</div>
<div class="line"><a name="l01118"></a><span class="lineno"> 1118</span>  } <a class="code" href="struct_addon_props___game.html">AddonProps_Game</a>;</div>
<div class="line"><a name="l01119"></a><span class="lineno"> 1119</span>  </div>
<div class="line"><a name="l01120"></a><span class="lineno"> 1120</span>  <span class="keyword">typedef</span> <span class="keywordtype">void</span>* KODI_GAME_STREAM_HANDLE;</div>
<div class="line"><a name="l01121"></a><span class="lineno"> 1121</span>  </div>
<div class="line"><a name="l01124"></a><span class="lineno"> 1124</span>  <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>;</div>
<div class="line"><a name="l01125"></a><span class="lineno"> 1125</span>  </div>
<div class="line"><a name="l01131"></a><span class="lineno"><a class="line" href="struct_addon_to_kodi_func_table___game.html"> 1131</a></span>  <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct_addon_to_kodi_func_table___game.html">AddonToKodiFuncTable_Game</a></div>
<div class="line"><a name="l01132"></a><span class="lineno"> 1132</span>  {</div>
<div class="line"><a name="l01133"></a><span class="lineno"> 1133</span>  KODI_HANDLE kodiInstance;</div>
<div class="line"><a name="l01134"></a><span class="lineno"> 1134</span>  </div>
<div class="line"><a name="l01135"></a><span class="lineno"> 1135</span>  void (*CloseGame)(KODI_HANDLE kodiInstance);</div>
<div class="line"><a name="l01136"></a><span class="lineno"> 1136</span>  KODI_GAME_STREAM_HANDLE (*OpenStream)(KODI_HANDLE, <span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__properties">game_stream_properties</a>*);</div>
<div class="line"><a name="l01137"></a><span class="lineno"> 1137</span>  bool (*GetStreamBuffer)(KODI_HANDLE,</div>
<div class="line"><a name="l01138"></a><span class="lineno"> 1138</span>  KODI_GAME_STREAM_HANDLE,</div>
<div class="line"><a name="l01139"></a><span class="lineno"> 1139</span>  <span class="keywordtype">unsigned</span> int,</div>
<div class="line"><a name="l01140"></a><span class="lineno"> 1140</span>  <span class="keywordtype">unsigned</span> int,</div>
<div class="line"><a name="l01141"></a><span class="lineno"> 1141</span>  <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__buffer">game_stream_buffer</a>*);</div>
<div class="line"><a name="l01142"></a><span class="lineno"> 1142</span>  void (*AddStreamData)(KODI_HANDLE, KODI_GAME_STREAM_HANDLE, <span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__packet">game_stream_packet</a>*);</div>
<div class="line"><a name="l01143"></a><span class="lineno"> 1143</span>  void (*ReleaseStreamBuffer)(KODI_HANDLE, KODI_GAME_STREAM_HANDLE, <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__buffer">game_stream_buffer</a>*);</div>
<div class="line"><a name="l01144"></a><span class="lineno"> 1144</span>  void (*CloseStream)(KODI_HANDLE, KODI_GAME_STREAM_HANDLE);</div>
<div class="line"><a name="l01145"></a><span class="lineno"> 1145</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ga7e99c45dc3001a78b3d5fcdb38515d53">game_proc_address_t</a> (*HwGetProcAddress)(KODI_HANDLE kodiInstance, <span class="keyword">const</span> <span class="keywordtype">char</span>* symbol);</div>
<div class="line"><a name="l01146"></a><span class="lineno"> 1146</span>  bool (*InputEvent)(KODI_HANDLE kodiInstance, <span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__event">game_input_event</a>* event);</div>
<div class="line"><a name="l01147"></a><span class="lineno"> 1147</span>  } <a class="code" href="struct_addon_to_kodi_func_table___game.html">AddonToKodiFuncTable_Game</a>;</div>
<div class="line"><a name="l01148"></a><span class="lineno"> 1148</span>  </div>
<div class="line"><a name="l01154"></a><span class="lineno"><a class="line" href="struct_kodi_to_addon_func_table___game.html"> 1154</a></span>  <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct_kodi_to_addon_func_table___game.html">KodiToAddonFuncTable_Game</a></div>
<div class="line"><a name="l01155"></a><span class="lineno"> 1155</span>  {</div>
<div class="line"><a name="l01156"></a><span class="lineno"> 1156</span>  KODI_HANDLE addonInstance;</div>
<div class="line"><a name="l01157"></a><span class="lineno"> 1157</span>  </div>
<div class="line"><a name="l01158"></a><span class="lineno"> 1158</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* LoadGame)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01159"></a><span class="lineno"> 1159</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* LoadGameSpecial)</div>
<div class="line"><a name="l01160"></a><span class="lineno"> 1160</span>  (<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gae227c65af490275c3e3c9b885457ac38">SPECIAL_GAME_TYPE</a>, <span class="keyword">const</span> <span class="keywordtype">char</span>**, size_t);</div>
<div class="line"><a name="l01161"></a><span class="lineno"> 1161</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* LoadStandalone)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01162"></a><span class="lineno"> 1162</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* UnloadGame)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01163"></a><span class="lineno"> 1163</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* GetGameTiming)</div>
<div class="line"><a name="l01164"></a><span class="lineno"> 1164</span>  (<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___environment_types.html#structgame__system__timing">game_system_timing</a>*);</div>
<div class="line"><a name="l01165"></a><span class="lineno"> 1165</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gac33f5cc9e9651c9cb1693afb1b884e60">GAME_REGION</a>(__cdecl* <a class="code" href="group__cpp__kodi.html#ga999b45568e7ff08f0f448305828cd9f0">GetRegion</a>)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01166"></a><span class="lineno"> 1166</span>  bool(__cdecl* RequiresGameLoop)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01167"></a><span class="lineno"> 1167</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* RunFrame)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01168"></a><span class="lineno"> 1168</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* Reset)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01169"></a><span class="lineno"> 1169</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* HwContextReset)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01170"></a><span class="lineno"> 1170</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* HwContextDestroy)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01171"></a><span class="lineno"> 1171</span>  bool(__cdecl* HasFeature)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">const</span> <span class="keywordtype">char</span>*, <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01172"></a><span class="lineno"> 1172</span>  <a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__topology">game_input_topology</a>*(__cdecl* GetTopology)(<span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01173"></a><span class="lineno"> 1173</span>  void(__cdecl* FreeTopology)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__topology">game_input_topology</a>*);</div>
<div class="line"><a name="l01174"></a><span class="lineno"> 1174</span>  void(__cdecl* SetControllerLayouts)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*,</div>
<div class="line"><a name="l01175"></a><span class="lineno"> 1175</span>  <span class="keyword">const</span> <span class="keyword">struct </span>game_controller_layout*,</div>
<div class="line"><a name="l01176"></a><span class="lineno"> 1176</span>  <span class="keywordtype">unsigned</span> int);</div>
<div class="line"><a name="l01177"></a><span class="lineno"> 1177</span>  bool(__cdecl* EnableKeyboard)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, bool, <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01178"></a><span class="lineno"> 1178</span>  bool(__cdecl* EnableMouse)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, bool, <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01179"></a><span class="lineno"> 1179</span>  bool(__cdecl* ConnectController)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*,</div>
<div class="line"><a name="l01180"></a><span class="lineno"> 1180</span>  bool,</div>
<div class="line"><a name="l01181"></a><span class="lineno"> 1181</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>*,</div>
<div class="line"><a name="l01182"></a><span class="lineno"> 1182</span>  <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01183"></a><span class="lineno"> 1183</span>  bool(__cdecl* InputEvent)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__event">game_input_event</a>*);</div>
<div class="line"><a name="l01184"></a><span class="lineno"> 1184</span>  size_t(__cdecl* SerializeSize)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01185"></a><span class="lineno"> 1185</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* Serialize)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, uint8_t*, size_t);</div>
<div class="line"><a name="l01186"></a><span class="lineno"> 1186</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* Deserialize)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">const</span> uint8_t*, size_t);</div>
<div class="line"><a name="l01187"></a><span class="lineno"> 1187</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* CheatReset)(<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*);</div>
<div class="line"><a name="l01188"></a><span class="lineno"> 1188</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* GetMemory)</div>
<div class="line"><a name="l01189"></a><span class="lineno"> 1189</span>  (<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keyword">enum</span> <a class="code" href="group__cpp__kodi__addon__game___defs___game_types.html#gaf52d501cc2ba9de915c80313887b2a87">GAME_MEMORY</a>, uint8_t**, <span class="keywordtype">size_t</span>*);</div>
<div class="line"><a name="l01190"></a><span class="lineno"> 1190</span>  <a class="code" href="group__cpp__kodi__addon__game___defs.html#gad0fb9f502cf7b3a84f8edb0dc6cbd6ef">GAME_ERROR</a>(__cdecl* SetCheat)</div>
<div class="line"><a name="l01191"></a><span class="lineno"> 1191</span>  (<span class="keyword">const</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>*, <span class="keywordtype">unsigned</span> int, bool, <span class="keyword">const</span> <span class="keywordtype">char</span>*);</div>
<div class="line"><a name="l01192"></a><span class="lineno"> 1192</span>  } <a class="code" href="struct_kodi_to_addon_func_table___game.html">KodiToAddonFuncTable_Game</a>;</div>
<div class="line"><a name="l01193"></a><span class="lineno"> 1193</span>  </div>
<div class="line"><a name="l01199"></a><span class="lineno"><a class="line" href="struct_addon_instance___game.html"> 1199</a></span>  <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a></div>
<div class="line"><a name="l01200"></a><span class="lineno"> 1200</span>  {</div>
<div class="line"><a name="l01201"></a><span class="lineno"> 1201</span>  <span class="keyword">struct </span><a class="code" href="struct_addon_props___game.html">AddonProps_Game</a>* props;</div>
<div class="line"><a name="l01202"></a><span class="lineno"> 1202</span>  <span class="keyword">struct </span><a class="code" href="struct_addon_to_kodi_func_table___game.html">AddonToKodiFuncTable_Game</a>* toKodi;</div>
<div class="line"><a name="l01203"></a><span class="lineno"> 1203</span>  <span class="keyword">struct </span><a class="code" href="struct_kodi_to_addon_func_table___game.html">KodiToAddonFuncTable_Game</a>* toAddon;</div>
<div class="line"><a name="l01204"></a><span class="lineno"> 1204</span>  } <a class="code" href="struct_addon_instance___game.html">AddonInstance_Game</a>;</div>
<div class="line"><a name="l01205"></a><span class="lineno"> 1205</span>  </div>
<div class="line"><a name="l01206"></a><span class="lineno"> 1206</span> <span class="preprocessor">#ifdef __cplusplus</span></div>
<div class="line"><a name="l01207"></a><span class="lineno"> 1207</span> }</div>
<div class="line"><a name="l01208"></a><span class="lineno"> 1208</span> <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span><span class="preprocessor"></span></div>
<div class="line"><a name="l01209"></a><span class="lineno"> 1209</span>  </div>
<div class="line"><a name="l01210"></a><span class="lineno"> 1210</span> <span class="preprocessor">#endif </span><span class="comment">/* !C_API_ADDONINSTANCE_GAME_H */</span><span class="preprocessor"></span></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_a579f5164b5b16e18ddcdb0296ef81799"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#a579f5164b5b16e18ddcdb0296ef81799">game_stream_audio_packet::data</a></div><div class="ttdeci">const uint8_t * data</div><div class="ttdoc">Pointer for audio stream data given to Kodi.</div><div class="ttdef"><b>Definition:</b> game.h:177</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_a854352f53b148adc24983a58a1866d66"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#a854352f53b148adc24983a58a1866d66">game_stream_audio_packet::size</a></div><div class="ttdeci">size_t size</div><div class="ttdoc">Size of data array.</div><div class="ttdef"><b>Definition:</b> game.h:180</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_ga0c7ad6598f4f3504ce65091e6d64dd24"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga0c7ad6598f4f3504ce65091e6d64dd24">GAME_AUDIO_CHANNEL</a></div><div class="ttdeci">GAME_AUDIO_CHANNEL</div><div class="ttdoc">Audio channel</div><div class="ttdef"><b>Definition:</b> game.h:91</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_ga57e2a7a29cc0350c25d5ec8b0751d335"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#ga57e2a7a29cc0350c25d5ec8b0751d335">GAME_PCM_FORMAT</a></div><div class="ttdeci">GAME_PCM_FORMAT</div><div class="ttdoc">Stream Format</div><div class="ttdef"><b>Definition:</b> game.h:77</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a0eb0efc2c8ada120c5cd6ee36fd30ad8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a0eb0efc2c8ada120c5cd6ee36fd30ad8">GAME_CH_TFC</a></div><div class="ttdeci">@ GAME_CH_TFC</div><div class="ttdoc">Channel top front center.</div><div class="ttdef"><b>Definition:</b> game.h:135</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a1a9e621c04f55997791a79ec0789fb28"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1a9e621c04f55997791a79ec0789fb28">GAME_CH_FL</a></div><div class="ttdeci">@ GAME_CH_FL</div><div class="ttdoc">Channel front left.</div><div class="ttdef"><b>Definition:</b> game.h:96</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a1b0ccefb4b3c8b6a3a452c86c2c8cd4e"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a1b0ccefb4b3c8b6a3a452c86c2c8cd4e">GAME_CH_BL</a></div><div class="ttdeci">@ GAME_CH_BL</div><div class="ttdoc">Channel back left.</div><div class="ttdef"><b>Definition:</b> game.h:108</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a34a7080d02ceddcee867e383963d3885"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a34a7080d02ceddcee867e383963d3885">GAME_CH_TBR</a></div><div class="ttdeci">@ GAME_CH_TBR</div><div class="ttdoc">Channel top back right.</div><div class="ttdef"><b>Definition:</b> game.h:144</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a3e969423aeac3095708a88dc47454d60"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a3e969423aeac3095708a88dc47454d60">GAME_CH_FC</a></div><div class="ttdeci">@ GAME_CH_FC</div><div class="ttdoc">Channel front center.</div><div class="ttdef"><b>Definition:</b> game.h:102</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a42e7040283a8e16498f1ea555f19f077"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a42e7040283a8e16498f1ea555f19f077">GAME_CH_BLOC</a></div><div class="ttdeci">@ GAME_CH_BLOC</div><div class="ttdoc">Channel bacl left over center.</div><div class="ttdef"><b>Definition:</b> game.h:150</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a54e8e470b53a7b12be3f6f1cc7c74897"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a54e8e470b53a7b12be3f6f1cc7c74897">GAME_CH_TFL</a></div><div class="ttdeci">@ GAME_CH_TFL</div><div class="ttdoc">Channel top front left.</div><div class="ttdef"><b>Definition:</b> game.h:129</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a6102d6c60cc9c40489802661a1de162a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6102d6c60cc9c40489802661a1de162a">GAME_CH_NULL</a></div><div class="ttdeci">@ GAME_CH_NULL</div><div class="ttdoc">Channel list terminator.</div><div class="ttdef"><b>Definition:</b> game.h:93</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a6b5c494c6e293dccff7556edab9110bd"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a6b5c494c6e293dccff7556edab9110bd">GAME_CH_TBC</a></div><div class="ttdeci">@ GAME_CH_TBC</div><div class="ttdoc">Channel top back center.</div><div class="ttdef"><b>Definition:</b> game.h:147</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a70d21a7e40dfa68b4e6e88727007b25a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a70d21a7e40dfa68b4e6e88727007b25a">GAME_CH_SR</a></div><div class="ttdeci">@ GAME_CH_SR</div><div class="ttdoc">Channel surround/side right.</div><div class="ttdef"><b>Definition:</b> game.h:126</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a78b7a28fa752d6266cdb790498b8b839"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a78b7a28fa752d6266cdb790498b8b839">GAME_CH_TFR</a></div><div class="ttdeci">@ GAME_CH_TFR</div><div class="ttdoc">Channel top front right.</div><div class="ttdef"><b>Definition:</b> game.h:132</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a7cea4b16a688953488b23bce9a7494b3"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7cea4b16a688953488b23bce9a7494b3">GAME_CH_FR</a></div><div class="ttdeci">@ GAME_CH_FR</div><div class="ttdoc">Channel front right.</div><div class="ttdef"><b>Definition:</b> game.h:99</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a7d60d31a70b6163ba198d9ffef5de92a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a7d60d31a70b6163ba198d9ffef5de92a">GAME_CH_BC</a></div><div class="ttdeci">@ GAME_CH_BC</div><div class="ttdoc">Channel back center.</div><div class="ttdef"><b>Definition:</b> game.h:120</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24a885aae4c642e51f543bea89e794742fd"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24a885aae4c642e51f543bea89e794742fd">GAME_CH_SL</a></div><div class="ttdeci">@ GAME_CH_SL</div><div class="ttdoc">Channel surround/side left.</div><div class="ttdef"><b>Definition:</b> game.h:123</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24aa132934758bc6cd9a6264779694bedc1"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aa132934758bc6cd9a6264779694bedc1">GAME_CH_LFE</a></div><div class="ttdeci">@ GAME_CH_LFE</div><div class="ttdoc">Channel Low Frequency Effects / Subwoofer.</div><div class="ttdef"><b>Definition:</b> game.h:105</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24aad3aaf573ea44a34fbbe6cef1b069930"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aad3aaf573ea44a34fbbe6cef1b069930">GAME_CH_BROC</a></div><div class="ttdeci">@ GAME_CH_BROC</div><div class="ttdoc">Channel back right over center.</div><div class="ttdef"><b>Definition:</b> game.h:153</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24acf90def59953c8ecc995bf90bbfdd390"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24acf90def59953c8ecc995bf90bbfdd390">GAME_CH_TC</a></div><div class="ttdeci">@ GAME_CH_TC</div><div class="ttdoc">Channel top center.</div><div class="ttdef"><b>Definition:</b> game.h:138</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24ad871ad638b252cb8d7185e492bb03070"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24ad871ad638b252cb8d7185e492bb03070">GAME_CH_FLOC</a></div><div class="ttdeci">@ GAME_CH_FLOC</div><div class="ttdoc">Channel front left over center.</div><div class="ttdef"><b>Definition:</b> game.h:114</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24adbcb33afab92ca3872519b8d80ed6922"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24adbcb33afab92ca3872519b8d80ed6922">GAME_CH_FROC</a></div><div class="ttdeci">@ GAME_CH_FROC</div><div class="ttdoc">Channel front right over center.</div><div class="ttdef"><b>Definition:</b> game.h:117</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24aefe47a6c3db21aa5a6c373ea134520c9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24aefe47a6c3db21aa5a6c373ea134520c9">GAME_CH_TBL</a></div><div class="ttdeci">@ GAME_CH_TBL</div><div class="ttdoc">Channel top back left.</div><div class="ttdef"><b>Definition:</b> game.h:141</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga0c7ad6598f4f3504ce65091e6d64dd24afce337737a30a358247b93e88dd5f464"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga0c7ad6598f4f3504ce65091e6d64dd24afce337737a30a358247b93e88dd5f464">GAME_CH_BR</a></div><div class="ttdeci">@ GAME_CH_BR</div><div class="ttdoc">Channel back right.</div><div class="ttdef"><b>Definition:</b> game.h:111</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_gga57e2a7a29cc0350c25d5ec8b0751d335a0547c24a828d938ff5aeca4cd8966535"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#gga57e2a7a29cc0350c25d5ec8b0751d335a0547c24a828d938ff5aeca4cd8966535">GAME_PCM_FORMAT_S16NE</a></div><div class="ttdeci">@ GAME_PCM_FORMAT_S16NE</div><div class="ttdoc">S16NE sample format.</div><div class="ttdef"><b>Definition:</b> game.h:81</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_structgame__stream__audio__packet"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__packet">game_stream_audio_packet</a></div><div class="ttdoc">Audio stream packet</div><div class="ttdef"><b>Definition:</b> game.h:175</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___audio_stream_html_structgame__stream__audio__properties"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___audio_stream.html#structgame__stream__audio__properties">game_stream_audio_properties</a></div><div class="ttdoc">Game audio stream properties</div><div class="ttdef"><b>Definition:</b> game.h:163</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___environment_types_html_a5cd2077a80052e0e93450f6259fa5f92"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___environment_types.html#a5cd2077a80052e0e93450f6259fa5f92">game_system_timing::sample_rate</a></div><div class="ttdeci">double sample_rate</div><div class="ttdoc">Sampling rate of audio.</div><div class="ttdef"><b>Definition:</b> game.h:1055</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___environment_types_html_a63da2a617b72a1630998a4d8b4d26cd3"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___environment_types.html#a63da2a617b72a1630998a4d8b4d26cd3">game_system_timing::fps</a></div><div class="ttdeci">double fps</div><div class="ttdoc">FPS of video content.</div><div class="ttdef"><b>Definition:</b> game.h:1052</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___environment_types_html_structgame__system__timing"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___environment_types.html#structgame__system__timing">game_system_timing</a></div><div class="ttdoc">Game system timing.</div><div class="ttdef"><b>Definition:</b> game.h:1050</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ga0f464ca45f942699d2d030d021db77d4"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ga0f464ca45f942699d2d030d021db77d4">GAME_SIMD</a></div><div class="ttdeci">GAME_SIMD</div><div class="ttdoc">ID values for SIMD CPU features</div><div class="ttdef"><b>Definition:</b> game.h:646</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gac33f5cc9e9651c9cb1693afb1b884e60"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gac33f5cc9e9651c9cb1693afb1b884e60">GAME_REGION</a></div><div class="ttdeci">GAME_REGION</div><div class="ttdoc">Game reguin definition</div><div class="ttdef"><b>Definition:</b> game.h:563</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gae227c65af490275c3e3c9b885457ac38"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gae227c65af490275c3e3c9b885457ac38">SPECIAL_GAME_TYPE</a></div><div class="ttdeci">SPECIAL_GAME_TYPE</div><div class="ttdoc">Special game types passed into game_load_game_special().</div><div class="ttdef"><b>Definition:</b> game.h:581</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gaf52d501cc2ba9de915c80313887b2a87"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gaf52d501cc2ba9de915c80313887b2a87">GAME_MEMORY</a></div><div class="ttdeci">GAME_MEMORY</div><div class="ttdoc">Game Memory</div><div class="ttdef"><b>Definition:</b> game.h:600</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a15bebc33fc9bcf4902e617d6e659d406"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a15bebc33fc9bcf4902e617d6e659d406">GAME_SIMD_VFPU</a></div><div class="ttdeci">@ GAME_SIMD_VFPU</div><div class="ttdoc">SIMD CPU VFPU.</div><div class="ttdef"><b>Definition:</b> game.h:687</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a2aedc185ddbac35121d82034b5b5cfb5"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a2aedc185ddbac35121d82034b5b5cfb5">GAME_SIMD_VMX128</a></div><div class="ttdeci">@ GAME_SIMD_VMX128</div><div class="ttdoc">SIMD CPU VMX128.</div><div class="ttdef"><b>Definition:</b> game.h:657</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a31f7b598f56e83ae2cceaed3d782f0d2"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a31f7b598f56e83ae2cceaed3d782f0d2">GAME_SIMD_SSE</a></div><div class="ttdeci">@ GAME_SIMD_SSE</div><div class="ttdoc">SIMD CPU SSE.</div><div class="ttdef"><b>Definition:</b> game.h:648</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a7a6e16c7b8d4355415270c1883440260"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a6e16c7b8d4355415270c1883440260">GAME_SIMD_SSE4</a></div><div class="ttdeci">@ GAME_SIMD_SSE4</div><div class="ttdoc">SIMD CPU SSE4.</div><div class="ttdef"><b>Definition:</b> game.h:678</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a7a7ad6ce4f7dcf9e88e4ff4ea9a47835"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a7a7ad6ce4f7dcf9e88e4ff4ea9a47835">GAME_SIMD_NEON</a></div><div class="ttdeci">@ GAME_SIMD_NEON</div><div class="ttdoc">SIMD CPU NEON.</div><div class="ttdef"><b>Definition:</b> game.h:663</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4a8122a63c5ac3a6e8b53ffb88373de7b9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4a8122a63c5ac3a6e8b53ffb88373de7b9">GAME_SIMD_AVX2</a></div><div class="ttdeci">@ GAME_SIMD_AVX2</div><div class="ttdoc">SIMD CPU AVX2.</div><div class="ttdef"><b>Definition:</b> game.h:684</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4aa5a2a6d04eec2e62c97f0038bf8e6c53"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa5a2a6d04eec2e62c97f0038bf8e6c53">GAME_SIMD_SSE42</a></div><div class="ttdeci">@ GAME_SIMD_SSE42</div><div class="ttdoc">SIMD CPU SSE42.</div><div class="ttdef"><b>Definition:</b> game.h:681</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4aa892f28cbc097226f2b3315cda4abebe"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aa892f28cbc097226f2b3315cda4abebe">GAME_SIMD_SSSE3</a></div><div class="ttdeci">@ GAME_SIMD_SSSE3</div><div class="ttdoc">SIMD CPU SSSE3.</div><div class="ttdef"><b>Definition:</b> game.h:669</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4aaf125b4616b6682ba060bec7c0deb92a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4aaf125b4616b6682ba060bec7c0deb92a">GAME_SIMD_SSE2</a></div><div class="ttdeci">@ GAME_SIMD_SSE2</div><div class="ttdoc">SIMD CPU SSE2.</div><div class="ttdef"><b>Definition:</b> game.h:651</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4ab6941e6e1578a600bcfe6d64be9ab0e8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ab6941e6e1578a600bcfe6d64be9ab0e8">GAME_SIMD_SSE3</a></div><div class="ttdeci">@ GAME_SIMD_SSE3</div><div class="ttdoc">SIMD CPU SSE3.</div><div class="ttdef"><b>Definition:</b> game.h:666</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4abe64454b16abdb37c59389e5d23d06eb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4abe64454b16abdb37c59389e5d23d06eb">GAME_SIMD_AVX</a></div><div class="ttdeci">@ GAME_SIMD_AVX</div><div class="ttdoc">SIMD CPU AVX.</div><div class="ttdef"><b>Definition:</b> game.h:660</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4ac513ad613c3691c3b988e08df05db203"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ac513ad613c3691c3b988e08df05db203">GAME_SIMD_MMXEXT</a></div><div class="ttdeci">@ GAME_SIMD_MMXEXT</div><div class="ttdoc">SIMD CPU MMXEXT.</div><div class="ttdef"><b>Definition:</b> game.h:675</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4ad741787f2009cc982d166d6c8f6af205"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ad741787f2009cc982d166d6c8f6af205">GAME_SIMD_MMX</a></div><div class="ttdeci">@ GAME_SIMD_MMX</div><div class="ttdoc">SIMD CPU MMX.</div><div class="ttdef"><b>Definition:</b> game.h:672</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_gga0f464ca45f942699d2d030d021db77d4ade631cf4e6f6725d77a3999e31e4aa94"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#gga0f464ca45f942699d2d030d021db77d4ade631cf4e6f6725d77a3999e31e4aa94">GAME_SIMD_VMX</a></div><div class="ttdeci">@ GAME_SIMD_VMX</div><div class="ttdoc">SIMD CPU VMX.</div><div class="ttdef"><b>Definition:</b> game.h:654</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggac33f5cc9e9651c9cb1693afb1b884e60a10914ba7f3133f8b6755a5c85f7993d9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a10914ba7f3133f8b6755a5c85f7993d9">GAME_REGION_NTSC</a></div><div class="ttdeci">@ GAME_REGION_NTSC</div><div class="ttdoc">Game region NTSC.</div><div class="ttdef"><b>Definition:</b> game.h:568</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggac33f5cc9e9651c9cb1693afb1b884e60a34500c83bc74a3a7795f696eee3c23cf"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60a34500c83bc74a3a7795f696eee3c23cf">GAME_REGION_PAL</a></div><div class="ttdeci">@ GAME_REGION_PAL</div><div class="ttdoc">Game region PAL.</div><div class="ttdef"><b>Definition:</b> game.h:571</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggac33f5cc9e9651c9cb1693afb1b884e60acdbaf601ad806397966ab91c3fe92906"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggac33f5cc9e9651c9cb1693afb1b884e60acdbaf601ad806397966ab91c3fe92906">GAME_REGION_UNKNOWN</a></div><div class="ttdeci">@ GAME_REGION_UNKNOWN</div><div class="ttdoc">Game region unknown.</div><div class="ttdef"><b>Definition:</b> game.h:565</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggae227c65af490275c3e3c9b885457ac38a2277738f3dcf28e715b821cd1a1b13c3"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a2277738f3dcf28e715b821cd1a1b13c3">SPECIAL_GAME_TYPE_SUPER_GAME_BOY</a></div><div class="ttdeci">@ SPECIAL_GAME_TYPE_SUPER_GAME_BOY</div><div class="ttdoc">Game Type super game boy.</div><div class="ttdef"><b>Definition:</b> game.h:592</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggae227c65af490275c3e3c9b885457ac38a3801976e9c6eabc095cb79f162207d2b"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a3801976e9c6eabc095cb79f162207d2b">SPECIAL_GAME_TYPE_BSX</a></div><div class="ttdeci">@ SPECIAL_GAME_TYPE_BSX</div><div class="ttdoc">Game Type BSX.</div><div class="ttdef"><b>Definition:</b> game.h:583</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggae227c65af490275c3e3c9b885457ac38a5c5d3a3152b3155d0e13bad102fb8feb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a5c5d3a3152b3155d0e13bad102fb8feb">SPECIAL_GAME_TYPE_BSX_SLOTTED</a></div><div class="ttdeci">@ SPECIAL_GAME_TYPE_BSX_SLOTTED</div><div class="ttdoc">Game Type BSX slotted.</div><div class="ttdef"><b>Definition:</b> game.h:586</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggae227c65af490275c3e3c9b885457ac38a7e478e50e8d6d5a834a84cc9b6d0c6b8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggae227c65af490275c3e3c9b885457ac38a7e478e50e8d6d5a834a84cc9b6d0c6b8">SPECIAL_GAME_TYPE_SUFAMI_TURBO</a></div><div class="ttdeci">@ SPECIAL_GAME_TYPE_SUFAMI_TURBO</div><div class="ttdoc">Game Type sufami turbo.</div><div class="ttdef"><b>Definition:</b> game.h:589</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a2977cb4f078f24798c70350dd4b3d130"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2977cb4f078f24798c70350dd4b3d130">GAME_MEMORY_SNES_SUFAMI_TURBO_A_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_SUFAMI_TURBO_A_RAM</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:630</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a2c6c4a7bb4c0c00d7f36d3050cf2ce60"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a2c6c4a7bb4c0c00d7f36d3050cf2ce60">GAME_MEMORY_VIDEO_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_VIDEO_RAM</div><div class="ttdoc">Video ram lets a frontend peek into a game systems video RAM (VRAM)</div><div class="ttdef"><b>Definition:</b> game.h:621</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a425262be2dcb40cf7007ca4b615cbc90"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a425262be2dcb40cf7007ca4b615cbc90">GAME_MEMORY_SNES_SUFAMI_TURBO_B_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_SUFAMI_TURBO_B_RAM</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:633</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a49006a1d9bcbcc34d851a6e031af4d9d"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a49006a1d9bcbcc34d851a6e031af4d9d">GAME_MEMORY_SNES_GAME_BOY_RTC</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_GAME_BOY_RTC</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:639</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a87e03e0dc1ffe7f160b1bf6fc65939a7"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a87e03e0dc1ffe7f160b1bf6fc65939a7">GAME_MEMORY_SNES_BSX_PRAM</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_BSX_PRAM</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:627</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87a8e267e3914828680a021da1ed95782da"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87a8e267e3914828680a021da1ed95782da">GAME_MEMORY_MASK</a></div><div class="ttdeci">@ GAME_MEMORY_MASK</div><div class="ttdoc">Passed to game_get_memory_data/size(). If the memory type doesn't apply to the implementation NULL/0 ...</div><div class="ttdef"><b>Definition:</b> game.h:603</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87acc2823ed6ed1c51fc3188773e1ebb3bc">GAME_MEMORY_SAVE_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SAVE_RAM</div><div class="ttdoc">Regular save ram.</div><div class="ttdef"><b>Definition:</b> game.h:610</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87adf084a07f6c64056646adcadd4b816ae"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87adf084a07f6c64056646adcadd4b816ae">GAME_MEMORY_SYSTEM_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SYSTEM_RAM</div><div class="ttdoc">System ram lets a frontend peek into a game systems main RAM.</div><div class="ttdef"><b>Definition:</b> game.h:618</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87ae86273e7135c3531bd7a1f9e7ffc7bc8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87ae86273e7135c3531bd7a1f9e7ffc7bc8">GAME_MEMORY_SNES_BSX_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_BSX_RAM</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:624</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87aee1f88bb30294e0fb1abfde743aa2179"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aee1f88bb30294e0fb1abfde743aa2179">GAME_MEMORY_RTC</a></div><div class="ttdeci">@ GAME_MEMORY_RTC</div><div class="ttdoc">Some games have a built-in clock to keep track of time.</div><div class="ttdef"><b>Definition:</b> game.h:615</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___game_types_html_ggaf52d501cc2ba9de915c80313887b2a87aefcb7f6ce6ba05f0d93c80ffe34f1013"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___game_types.html#ggaf52d501cc2ba9de915c80313887b2a87aefcb7f6ce6ba05f0d93c80ffe34f1013">GAME_MEMORY_SNES_GAME_BOY_RAM</a></div><div class="ttdeci">@ GAME_MEMORY_SNES_GAME_BOY_RAM</div><div class="ttdoc">Special memory type.</div><div class="ttdef"><b>Definition:</b> game.h:636</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a154b5d760b70fc969de1a2301ce90dc4"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a154b5d760b70fc969de1a2301ce90dc4">game_stream_hw_framebuffer_properties::cache_context</a></div><div class="ttdeci">bool cache_context</div><div class="ttdoc">If this is true, the frontend will go very far to avoid resetting context in scenarios like toggling ...</div><div class="ttdef"><b>Definition:</b> game.h:376</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a2b05ec596787f44679509e7558525ed5"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a2b05ec596787f44679509e7558525ed5">game_stream_hw_framebuffer_properties::version_minor</a></div><div class="ttdeci">unsigned int version_minor</div><div class="ttdoc">Minor version number for core GL context or GLES 3.1+.</div><div class="ttdef"><b>Definition:</b> game.h:363</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a3c3a47e93d564d08b506d18291d5772a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a3c3a47e93d564d08b506d18291d5772a">game_stream_hw_framebuffer_properties::depth</a></div><div class="ttdeci">bool depth</div><div class="ttdoc">Set if render buffers should have depth component attached.</div><div class="ttdef"><b>Definition:</b> game.h:340</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a6540c97b3ede3afedc3eddb99863867e"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a6540c97b3ede3afedc3eddb99863867e">game_stream_hw_framebuffer_properties::version_major</a></div><div class="ttdeci">unsigned int version_major</div><div class="ttdoc">Major version number for core GL context or GLES 3.1+.</div><div class="ttdef"><b>Definition:</b> game.h:360</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a80e85b810ae38c95621e67b51e47f9bb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a80e85b810ae38c95621e67b51e47f9bb">game_stream_hw_framebuffer_properties::bottom_left_origin</a></div><div class="ttdeci">bool bottom_left_origin</div><div class="ttdoc">Use conventional bottom-left origin convention.</div><div class="ttdef"><b>Definition:</b> game.h:357</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_a9c3a34ffc196049b5535335935b53fde"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#a9c3a34ffc196049b5535335935b53fde">game_stream_hw_framebuffer_properties::context_type</a></div><div class="ttdeci">GAME_HW_CONTEXT_TYPE context_type</div><div class="ttdoc">The API to use.</div><div class="ttdef"><b>Definition:</b> game.h:334</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_adc79ea799f6f6ee7f7c300185412aaa0"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#adc79ea799f6f6ee7f7c300185412aaa0">game_stream_hw_framebuffer_properties::debug_context</a></div><div class="ttdeci">bool debug_context</div><div class="ttdoc">Creates a debug context.</div><div class="ttdef"><b>Definition:</b> game.h:379</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_af01d4df622c64194e81ba777b3abc4b9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#af01d4df622c64194e81ba777b3abc4b9">game_stream_hw_framebuffer_properties::stencil</a></div><div class="ttdeci">bool stencil</div><div class="ttdoc">Set if stencil buffers should be attached.</div><div class="ttdef"><b>Definition:</b> game.h:349</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ga7e99c45dc3001a78b3d5fcdb38515d53"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ga7e99c45dc3001a78b3d5fcdb38515d53">game_proc_address_t</a></div><div class="ttdeci">void(* game_proc_address_t)(void)</div><div class="ttdoc">Hardware framebuffer process function address</div><div class="ttdef"><b>Definition:</b> game.h:406</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_gac0851e563ca9dfc6597f66a4b0f8feee"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#gac0851e563ca9dfc6597f66a4b0f8feee">GAME_HW_CONTEXT_TYPE</a></div><div class="ttdeci">GAME_HW_CONTEXT_TYPE</div><div class="ttdoc">Hardware framebuffer type</div><div class="ttdef"><b>Definition:</b> game.h:303</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeea32fb4e8a788824cb6d173db3df401374"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea32fb4e8a788824cb6d173db3df401374">GAME_HW_CONTEXT_OPENGLES2</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_OPENGLES2</div><div class="ttdoc">OpenGL ES 2.0.</div><div class="ttdef"><b>Definition:</b> game.h:311</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeea4d064ab2f2866282cc8477de4ea306a4"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea4d064ab2f2866282cc8477de4ea306a4">GAME_HW_CONTEXT_OPENGL_CORE</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_OPENGL_CORE</div><div class="ttdoc">Modern desktop core GL context. Use major/minor fields to set GL version.</div><div class="ttdef"><b>Definition:</b> game.h:314</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeea64a8baeb7b41308bd2c724eaffdc061b"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea64a8baeb7b41308bd2c724eaffdc061b">GAME_HW_CONTEXT_VULKAN</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_VULKAN</div><div class="ttdoc">Vulkan.</div><div class="ttdef"><b>Definition:</b> game.h:323</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeea94cbcb09a02237f64793aeecd618b9eb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeea94cbcb09a02237f64793aeecd618b9eb">GAME_HW_CONTEXT_OPENGLES_VERSION</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_OPENGLES_VERSION</div><div class="ttdoc">OpenGL ES 3.1+. Set major/minor fields.</div><div class="ttdef"><b>Definition:</b> game.h:320</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeeaac2e4d301117a1f06a469f0229285d31"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaac2e4d301117a1f06a469f0229285d31">GAME_HW_CONTEXT_OPENGLES3</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_OPENGLES3</div><div class="ttdoc">OpenGL ES 3.0.</div><div class="ttdef"><b>Definition:</b> game.h:317</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeeadc612fc2185c29187e26116b9ec9fe7c"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeadc612fc2185c29187e26116b9ec9fe7c">GAME_HW_CONTEXT_NONE</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_NONE</div><div class="ttdoc">None context.</div><div class="ttdef"><b>Definition:</b> game.h:305</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_ggac0851e563ca9dfc6597f66a4b0f8feeeaf20a20d6c78eb519c24f45f0e93d3b0a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#ggac0851e563ca9dfc6597f66a4b0f8feeeaf20a20d6c78eb519c24f45f0e93d3b0a">GAME_HW_CONTEXT_OPENGL</a></div><div class="ttdeci">@ GAME_HW_CONTEXT_OPENGL</div><div class="ttdoc">OpenGL 2.x. Driver can choose to use latest compatibility context.</div><div class="ttdef"><b>Definition:</b> game.h:308</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_structgame__stream__hw__framebuffer__buffer"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__buffer">game_stream_hw_framebuffer_buffer</a></div><div class="ttdoc">Hardware framebuffer buffer</div><div class="ttdef"><b>Definition:</b> game.h:387</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_structgame__stream__hw__framebuffer__packet"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__packet">game_stream_hw_framebuffer_packet</a></div><div class="ttdoc">Hardware framebuffer packet</div><div class="ttdef"><b>Definition:</b> game.h:397</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___hardware_framebuffer_html_structgame__stream__hw__framebuffer__properties"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___hardware_framebuffer.html#structgame__stream__hw__framebuffer__properties">game_stream_hw_framebuffer_properties</a></div><div class="ttdoc">Hardware framebuffer properties</div><div class="ttdef"><b>Definition:</b> game.h:331</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_a3bdcbe88317cbb9920d90e3036f132d3"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#a3bdcbe88317cbb9920d90e3036f132d3">game_input_topology::port_count</a></div><div class="ttdeci">unsigned int port_count</div><div class="ttdoc">The number of ports.</div><div class="ttdef"><b>Definition:</b> game.h:871</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_a4239d1ee0492303d5c0f887425d40477"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#a4239d1ee0492303d5c0f887425d40477">game_input_topology::ports</a></div><div class="ttdeci">game_input_port * ports</div><div class="ttdoc">The list of ports on the virtual game console.</div><div class="ttdef"><b>Definition:</b> game.h:868</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_a950bf7c1ef84921edf82fe7e7fcb756a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#a950bf7c1ef84921edf82fe7e7fcb756a">game_input_device::controller_id</a></div><div class="ttdeci">const char * controller_id</div><div class="ttdoc">ID used in the Kodi controller API.</div><div class="ttdef"><b>Definition:</b> game.h:822</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_aaae9388f37ef1126f69786fbf8e3da01"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#aaae9388f37ef1126f69786fbf8e3da01">game_key_event::unicode</a></div><div class="ttdeci">uint32_t unicode</div><div class="ttdoc">If the keypress generates a printing character.</div><div class="ttdef"><b>Definition:</b> game.h:944</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_ad4a353829ac4dedea6c2e5b5613c23f6"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#ad4a353829ac4dedea6c2e5b5613c23f6">game_input_topology::player_limit</a></div><div class="ttdeci">int player_limit</div><div class="ttdoc">A limit on the number of input-providing devices, or -1 for no limit.</div><div class="ttdef"><b>Definition:</b> game.h:874</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_ae0c1039fda3c3113d40e2761e2defecb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#ae0c1039fda3c3113d40e2761e2defecb">game_input_port::port_id</a></div><div class="ttdeci">const char * port_id</div><div class="ttdoc">Required for GAME_PORT_CONTROLLER type.</div><div class="ttdef"><b>Definition:</b> game.h:848</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_ga9e16a589ec2009cca63e623675fcd3a7"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#ga9e16a589ec2009cca63e623675fcd3a7">GAME_PORT_TYPE</a></div><div class="ttdeci">GAME_PORT_TYPE</div><div class="ttdoc">Type of port on the virtual game console.</div><div class="ttdef"><b>Definition:</b> game.h:769</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_gga9e16a589ec2009cca63e623675fcd3a7a51292d32f9ebbd6387df19643146cb05"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a51292d32f9ebbd6387df19643146cb05">GAME_PORT_MOUSE</a></div><div class="ttdeci">@ GAME_PORT_MOUSE</div><div class="ttdoc">Game port mouse.</div><div class="ttdef"><b>Definition:</b> game.h:777</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_gga9e16a589ec2009cca63e623675fcd3a7a6a56f34d6f853b3f1aa0af440cdc5a21"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a6a56f34d6f853b3f1aa0af440cdc5a21">GAME_PORT_CONTROLLER</a></div><div class="ttdeci">@ GAME_PORT_CONTROLLER</div><div class="ttdoc">Game port controller.</div><div class="ttdef"><b>Definition:</b> game.h:780</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_gga9e16a589ec2009cca63e623675fcd3a7a7cfa1a53f311d736fc8e1e209950d770"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a7cfa1a53f311d736fc8e1e209950d770">GAME_PORT_KEYBOARD</a></div><div class="ttdeci">@ GAME_PORT_KEYBOARD</div><div class="ttdoc">Game port Keyboard.</div><div class="ttdef"><b>Definition:</b> game.h:774</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_gga9e16a589ec2009cca63e623675fcd3a7a8c662f98bdabede3a825c906c52060e9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#gga9e16a589ec2009cca63e623675fcd3a7a8c662f98bdabede3a825c906c52060e9">GAME_PORT_UNKNOWN</a></div><div class="ttdeci">@ GAME_PORT_UNKNOWN</div><div class="ttdoc">Game port unknown.</div><div class="ttdef"><b>Definition:</b> game.h:771</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__abs__pointer__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__abs__pointer__event">game_abs_pointer_event</a></div><div class="ttdef"><b>Definition:</b> game.h:966</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__accelerometer__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__accelerometer__event">game_accelerometer_event</a></div><div class="ttdef"><b>Definition:</b> game.h:920</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__analog__button__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__button__event">game_analog_button_event</a></div><div class="ttdef"><b>Definition:</b> game.h:890</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__analog__stick__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__analog__stick__event">game_analog_stick_event</a></div><div class="ttdef"><b>Definition:</b> game.h:908</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__axis__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__axis__event">game_axis_event</a></div><div class="ttdef"><b>Definition:</b> game.h:899</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__digital__button__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__digital__button__event">game_digital_button_event</a></div><div class="ttdef"><b>Definition:</b> game.h:881</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__input__device"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__device">game_input_device</a></div><div class="ttdoc">Device that can provide input.</div><div class="ttdef"><b>Definition:</b> game.h:820</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__input__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__event">game_input_event</a></div><div class="ttdef"><b>Definition:</b> game.h:990</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__input__port"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__port">game_input_port</a></div><div class="ttdoc">Port that can provide input.</div><div class="ttdef"><b>Definition:</b> game.h:843</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__input__topology"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__input__topology">game_input_topology</a></div><div class="ttdoc">The input topology is the possible ways to connect input devices.</div><div class="ttdef"><b>Definition:</b> game.h:866</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__key__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__key__event">game_key_event</a></div><div class="ttdef"><b>Definition:</b> game.h:935</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__motor__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__motor__event">game_motor_event</a></div><div class="ttdef"><b>Definition:</b> game.h:981</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___input_types_html_structgame__rel__pointer__event"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___input_types.html#structgame__rel__pointer__event">game_rel_pointer_event</a></div><div class="ttdef"><b>Definition:</b> game.h:954</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___software_framebuffer_html_ga7428503b2f280c81f589b42d6261b6cf"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#ga7428503b2f280c81f589b42d6261b6cf">game_stream_sw_framebuffer_packet</a></div><div class="ttdeci">game_stream_video_packet game_stream_sw_framebuffer_packet</div><div class="ttdoc">Video stream packet</div><div class="ttdef"><b>Definition:</b> game.h:442</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___software_framebuffer_html_gad6b6ccf8a1f314e1f53464cb9e186c1a"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#gad6b6ccf8a1f314e1f53464cb9e186c1a">game_stream_sw_framebuffer_properties</a></div><div class="ttdeci">game_stream_video_properties game_stream_sw_framebuffer_properties</div><div class="ttdoc">Game video stream properties</div><div class="ttdef"><b>Definition:</b> game.h:423</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___software_framebuffer_html_structgame__stream__sw__framebuffer__buffer"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___software_framebuffer.html#structgame__stream__sw__framebuffer__buffer">game_stream_sw_framebuffer_buffer</a></div><div class="ttdoc">Hardware framebuffer type</div><div class="ttdef"><b>Definition:</b> game.h:430</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_gae6efb6e0ceca199b37bf1d59a51aec4d"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#gae6efb6e0ceca199b37bf1d59a51aec4d">GAME_STREAM_TYPE</a></div><div class="ttdeci">GAME_STREAM_TYPE</div><div class="ttdoc">Game stream types</div><div class="ttdef"><b>Definition:</b> game.h:458</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_ggae6efb6e0ceca199b37bf1d59a51aec4da009cecd365c4319d04dcbceaad64ac4d"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da009cecd365c4319d04dcbceaad64ac4d">GAME_STREAM_VIDEO</a></div><div class="ttdeci">@ GAME_STREAM_VIDEO</div><div class="ttdoc">Video stream.</div><div class="ttdef"><b>Definition:</b> game.h:466</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_ggae6efb6e0ceca199b37bf1d59a51aec4da1074b0ca6005e344cbf3d516aba9b8b9"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da1074b0ca6005e344cbf3d516aba9b8b9">GAME_STREAM_AUDIO</a></div><div class="ttdeci">@ GAME_STREAM_AUDIO</div><div class="ttdoc">Audio stream.</div><div class="ttdef"><b>Definition:</b> game.h:463</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_ggae6efb6e0ceca199b37bf1d59a51aec4da3a1b28b3910d740b9e6a4f91b1b9466b"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da3a1b28b3910d740b9e6a4f91b1b9466b">GAME_STREAM_HW_FRAMEBUFFER</a></div><div class="ttdeci">@ GAME_STREAM_HW_FRAMEBUFFER</div><div class="ttdoc">Hardware framebuffer.</div><div class="ttdef"><b>Definition:</b> game.h:469</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_ggae6efb6e0ceca199b37bf1d59a51aec4da42000ed48e70ee5438fa7e06bf9314b8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4da42000ed48e70ee5438fa7e06bf9314b8">GAME_STREAM_UNKNOWN</a></div><div class="ttdeci">@ GAME_STREAM_UNKNOWN</div><div class="ttdoc">Unknown.</div><div class="ttdef"><b>Definition:</b> game.h:460</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_ggae6efb6e0ceca199b37bf1d59a51aec4dac6a67646021ebd918523043949b8ec66"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#ggae6efb6e0ceca199b37bf1d59a51aec4dac6a67646021ebd918523043949b8ec66">GAME_STREAM_SW_FRAMEBUFFER</a></div><div class="ttdeci">@ GAME_STREAM_SW_FRAMEBUFFER</div><div class="ttdoc">Software framebuffer.</div><div class="ttdef"><b>Definition:</b> game.h:472</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_structgame__stream__buffer"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__buffer">game_stream_buffer</a></div><div class="ttdoc">Stream buffers for hardware rendering and zero-copy support</div><div class="ttdef"><b>Definition:</b> game.h:507</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_structgame__stream__packet"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__packet">game_stream_packet</a></div><div class="ttdoc">Stream packet and ephemeral metadata</div><div class="ttdef"><b>Definition:</b> game.h:529</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___stream_types_html_structgame__stream__properties"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___stream_types.html#structgame__stream__properties">game_stream_properties</a></div><div class="ttdoc">Immutable stream metadata</div><div class="ttdef"><b>Definition:</b> game.h:483</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_a5584bdb427edfe29e0c0c3753b619161"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#a5584bdb427edfe29e0c0c3753b619161">game_stream_video_properties::aspect_ratio</a></div><div class="ttdeci">float aspect_ratio</div><div class="ttdoc">On video stream used aspect ration.</div><div class="ttdef"><b>Definition:</b> game.h:262</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_a579f5164b5b16e18ddcdb0296ef81799"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#a579f5164b5b16e18ddcdb0296ef81799">game_stream_video_packet::data</a></div><div class="ttdeci">const uint8_t * data</div><div class="ttdoc">Pointer for video stream data given to Kodi.</div><div class="ttdef"><b>Definition:</b> game.h:283</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_a854352f53b148adc24983a58a1866d66"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#a854352f53b148adc24983a58a1866d66">game_stream_video_packet::size</a></div><div class="ttdeci">size_t size</div><div class="ttdoc">Size of data array.</div><div class="ttdef"><b>Definition:</b> game.h:286</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_a892bb65fda99eae2fa1aa88bf9fbed11"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#a892bb65fda99eae2fa1aa88bf9fbed11">game_stream_video_properties::nominal_width</a></div><div class="ttdeci">unsigned int nominal_width</div><div class="ttdoc">The nominal used width.</div><div class="ttdef"><b>Definition:</b> game.h:248</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_aa359881e928cd3f4c3386bc004a0ba94"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#aa359881e928cd3f4c3386bc004a0ba94">game_stream_video_properties::max_height</a></div><div class="ttdeci">unsigned int max_height</div><div class="ttdoc">The maximal used height.</div><div class="ttdef"><b>Definition:</b> game.h:257</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_aa808196005a0b5247450a34a552c0440"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#aa808196005a0b5247450a34a552c0440">game_stream_video_packet::rotation</a></div><div class="ttdeci">GAME_VIDEO_ROTATION rotation</div><div class="ttdoc">Width GAME_VIDEO_ROTATION defined rotation angle.</div><div class="ttdef"><b>Definition:</b> game.h:280</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_ab2e78c61905b4419fcc7b4cfc500fe85"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#ab2e78c61905b4419fcc7b4cfc500fe85">game_stream_video_packet::height</a></div><div class="ttdeci">unsigned int height</div><div class="ttdoc">Video width.</div><div class="ttdef"><b>Definition:</b> game.h:277</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_ac94bbe4c69d1d19af62fa63e54d5b760"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#ac94bbe4c69d1d19af62fa63e54d5b760">game_stream_video_properties::max_width</a></div><div class="ttdeci">unsigned int max_width</div><div class="ttdoc">The maximal used width.</div><div class="ttdef"><b>Definition:</b> game.h:254</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_aca34d28e3d8bcbcadb8edb4e3af24f8c"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#aca34d28e3d8bcbcadb8edb4e3af24f8c">game_stream_video_packet::width</a></div><div class="ttdeci">unsigned int width</div><div class="ttdoc">Video height.</div><div class="ttdef"><b>Definition:</b> game.h:274</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_ae58cee32b99bdf0ef4b56bf7e76a4238"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#ae58cee32b99bdf0ef4b56bf7e76a4238">game_stream_video_properties::format</a></div><div class="ttdeci">GAME_PIXEL_FORMAT format</div><div class="ttdoc">The stream's pixel format.</div><div class="ttdef"><b>Definition:</b> game.h:245</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_aed93af630fab310ac8ef9a7996d52cd8"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#aed93af630fab310ac8ef9a7996d52cd8">game_stream_video_properties::nominal_height</a></div><div class="ttdeci">unsigned int nominal_height</div><div class="ttdoc">The nominal used height.</div><div class="ttdef"><b>Definition:</b> game.h:251</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_ga10510fc672666b51dc499ecb5349c572"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10510fc672666b51dc499ecb5349c572">GAME_PIXEL_FORMAT</a></div><div class="ttdeci">GAME_PIXEL_FORMAT</div><div class="ttdoc">Pixel format</div><div class="ttdef"><b>Definition:</b> game.h:202</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_ga10a84be972c12f87ae2a665782efdfd0"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#ga10a84be972c12f87ae2a665782efdfd0">GAME_VIDEO_ROTATION</a></div><div class="ttdeci">GAME_VIDEO_ROTATION</div><div class="ttdoc">Video rotation position</div><div class="ttdef"><b>Definition:</b> game.h:222</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_gga10510fc672666b51dc499ecb5349c572a2f02ed272a178888b87879e00a54eadb"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572a2f02ed272a178888b87879e00a54eadb">GAME_PIXEL_FORMAT_RGB565</a></div><div class="ttdeci">@ GAME_PIXEL_FORMAT_RGB565</div><div class="ttdoc">RGB565 Format.</div><div class="ttdef"><b>Definition:</b> game.h:209</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_gga10510fc672666b51dc499ecb5349c572ada626632914d0292c1390a0b5754f4c0"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572ada626632914d0292c1390a0b5754f4c0">GAME_PIXEL_FORMAT_0RGB1555</a></div><div class="ttdeci">@ GAME_PIXEL_FORMAT_0RGB1555</div><div class="ttdoc">0RGB1555 Format</div><div class="ttdef"><b>Definition:</b> game.h:212</div></div>
<div class="ttc" id="agroup__cpp__kodi__addon__game___defs___video_stream_html_gga10510fc672666b51dc499ecb5349c572aecbbdd39ab7835b7ddcfd483bee24d40"><div class="ttname"><a href="group__cpp__kodi__addon__game___defs___video_stream.html#gga10510fc672666b51dc499ecb5349c572aecbbdd39ab7835b7ddcfd483bee24d40">GAME_PIXEL_FORMAT_0RGB8888</a></div><div class="ttdeci">@ GAME_PIXEL_FORMAT_0RGB8888</div><div class="ttdoc">0RGB8888 Format</div><div class="ttdef"><b>Definition:</b> game.h:206</div></div>