-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpDX.RawInput.xml
More file actions
1767 lines (1767 loc) · 114 KB
/
SharpDX.RawInput.xml
File metadata and controls
1767 lines (1767 loc) · 114 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>SharpDX.RawInput</name>
</assembly>
<members>
<member name="T:SharpDX.RawInput.AssemblyDoc">
<summary>
The <see cref="A:SharpDX.RawInput"/> assembly provides managed RawInput API.
</summary>
<msdn-id>ms645536</msdn-id>
<unmanaged>RawInput</unmanaged>
<unmanaged-short>RawInput</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.Device">
<summary>
Provides access to RawInput methods.
</summary>
</member>
<member name="M:SharpDX.RawInput.Device.GetDevices">
<summary>
Gets the devices.
</summary>
<returns></returns>
</member>
<member name="M:SharpDX.RawInput.Device.RegisterDevice(SharpDX.Multimedia.UsagePage,SharpDX.Multimedia.UsageId,SharpDX.RawInput.DeviceFlags)">
<summary>
Registers the devices that supply the raw input data.
</summary>
<param name="usagePage">The usage page.</param>
<param name="usageId">The usage id.</param>
<param name="flags">The flags.</param>
</member>
<member name="M:SharpDX.RawInput.Device.RegisterDevice(SharpDX.Multimedia.UsagePage,SharpDX.Multimedia.UsageId,SharpDX.RawInput.DeviceFlags,System.IntPtr,SharpDX.RawInput.RegisterDeviceOptions)">
<summary>
Registers the devices that supply the raw input data.
</summary>
<param name="usagePage">The usage page.</param>
<param name="usageId">The usage id.</param>
<param name="flags">The flags.</param>
<param name="target">The target.</param>
<param name="options">The options.</param>
</member>
<member name="M:SharpDX.RawInput.Device.HandleMessage(System.IntPtr)">
<summary>
Handles a RawInput message manually.
</summary>
<param name="rawInputMessagePointer">A pointer to a RawInput message.</param>
<remarks>
This method can be used directly when handling RawInput messages from non-WinForms application.
</remarks>
</member>
<member name="E:SharpDX.RawInput.Device.KeyboardInput">
<summary>
Occurs when [keyboard input].
</summary>
</member>
<member name="E:SharpDX.RawInput.Device.MouseInput">
<summary>
Occurs when [mouse input].
</summary>
</member>
<member name="E:SharpDX.RawInput.Device.RawInput">
<summary>
Occurs when [raw input].
</summary>
</member>
<member name="T:SharpDX.RawInput.Device.RawInputMessageFilter">
<summary>
Internal RawInput message filtering
</summary>
</member>
<member name="F:SharpDX.RawInput.Device.RawInputMessageFilter.WmInput">
<summary>
WM_INPUT
</summary>
</member>
<member name="T:SharpDX.RawInput.DeviceInfo">
<summary>
Defines the raw input data coming from any device.
</summary>
<unmanaged>RID_DEVICE_INFO</unmanaged>
</member>
<member name="M:SharpDX.RawInput.DeviceInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:SharpDX.RawInput.DeviceInfo"/> class.
</summary>
</member>
<member name="M:SharpDX.RawInput.DeviceInfo.#ctor(SharpDX.RawInput.RawDeviceInformation@,System.String,System.IntPtr)">
<summary>
Initializes a new instance of the <see cref="T:SharpDX.RawInput.DeviceInfo"/> class.
</summary>
<param name="rawDeviceInfo">The raw device info.</param>
<param name="deviceName">Name of the device.</param>
<param name="deviceHandle">The device handle.</param>
</member>
<member name="M:SharpDX.RawInput.DeviceInfo.Convert(SharpDX.RawInput.RawDeviceInformation@,System.String,System.IntPtr)">
<summary>
Converts the specified raw device info to the <see cref="T:SharpDX.RawInput.DeviceInfo"/>.
</summary>
<param name="rawDeviceInfo">The raw device info.</param>
<param name="deviceName">Name of the device.</param>
<param name="deviceHandle">The device handle.</param>
<returns></returns>
</member>
<member name="P:SharpDX.RawInput.DeviceInfo.DeviceName">
<summary>
Gets or sets the name of the device.
</summary>
<value>
The name of the device.
</value>
</member>
<member name="P:SharpDX.RawInput.DeviceInfo.DeviceType">
<summary>
Gets or sets the type of the device.
</summary>
<value>
The type of the device.
</value>
</member>
<member name="P:SharpDX.RawInput.DeviceInfo.Handle">
<summary>
Gets or sets the handle.
</summary>
<value>
The handle.
</value>
</member>
<member name="T:SharpDX.RawInput.DeviceFlags">
<summary>
<p>There are many user-input devices beside the traditional keyboard and mouse. For example, user input can come from a joystick, a touch screen, a microphone, or other devices that allow great flexibility in user input. These devices are collectively known as Human Interface Devices (HIDs). The raw input API provides a stable and robust way for applications to accept raw input from any HID, including the keyboard and mouse.</p><p>This section covers the following topics:</p><p> </p><ul> <li>Raw</li> <li>Registration</li> <li>Reading</li> </ul>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_DEVICE_FLAGS']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RAW_DEVICE_FLAGS</unmanaged>
<unmanaged-short>RAW_DEVICE_FLAGS</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.Remove">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_REMOVE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_REMOVE</unmanaged>
<unmanaged-short>RIDEV_REMOVE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.Exclude">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_EXCLUDE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_EXCLUDE</unmanaged>
<unmanaged-short>RIDEV_EXCLUDE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.PageOnly">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_PAGEONLY']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_PAGEONLY</unmanaged>
<unmanaged-short>RIDEV_PAGEONLY</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.NoLegacy">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_NOLEGACY']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_NOLEGACY</unmanaged>
<unmanaged-short>RIDEV_NOLEGACY</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.InputSink">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_INPUTSINK']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_INPUTSINK</unmanaged>
<unmanaged-short>RIDEV_INPUTSINK</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.CaptureMouse">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_CAPTUREMOUSE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_CAPTUREMOUSE</unmanaged>
<unmanaged-short>RIDEV_CAPTUREMOUSE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.NoHotKeys">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_NOHOTKEYS']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_NOHOTKEYS</unmanaged>
<unmanaged-short>RIDEV_NOHOTKEYS</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.AppKeys">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_APPKEYS']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_APPKEYS</unmanaged>
<unmanaged-short>RIDEV_APPKEYS</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.ExclusiveInputSink">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_EXINPUTSINK']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_EXINPUTSINK</unmanaged>
<unmanaged-short>RIDEV_EXINPUTSINK</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.DeviceNotify">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDEV_DEVNOTIFY']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDEV_DEVNOTIFY</unmanaged>
<unmanaged-short>RIDEV_DEVNOTIFY</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceFlags.None">
<summary>
None.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*"/>
<unmanaged>None</unmanaged>
<unmanaged-short>None</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.DeviceType">
<summary>
<p>There are many user-input devices beside the traditional keyboard and mouse. For example, user input can come from a joystick, a touch screen, a microphone, or other devices that allow great flexibility in user input. These devices are collectively known as Human Interface Devices (HIDs). The raw input API provides a stable and robust way for applications to accept raw input from any HID, including the keyboard and mouse.</p><p>This section covers the following topics:</p><p> </p><ul> <li>Raw</li> <li>Registration</li> <li>Reading</li> </ul>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_DEVICE_TYPE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RAW_DEVICE_TYPE</unmanaged>
<unmanaged-short>RAW_DEVICE_TYPE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceType.Mouse">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIM_TYPEMOUSE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIM_TYPEMOUSE</unmanaged>
<unmanaged-short>RIM_TYPEMOUSE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceType.Keyboard">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIM_TYPEKEYBOARD']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIM_TYPEKEYBOARD</unmanaged>
<unmanaged-short>RIM_TYPEKEYBOARD</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.DeviceType.HumanInputDevice">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIM_TYPEHID']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIM_TYPEHID</unmanaged>
<unmanaged-short>RIM_TYPEHID</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.KeyState">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_KEY_STATE']/*"/>
<unmanaged>RAW_KEY_STATE</unmanaged>
<unmanaged-short>RAW_KEY_STATE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.VirtualKeyToItem">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_VKEYTOITEM']/*"/>
<unmanaged>WM_VKEYTOITEM</unmanaged>
<unmanaged-short>WM_VKEYTOITEM</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.SetHotKey">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_SETHOTKEY']/*"/>
<unmanaged>WM_SETHOTKEY</unmanaged>
<unmanaged-short>WM_SETHOTKEY</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.GetHotKey">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_GETHOTKEY']/*"/>
<unmanaged>WM_GETHOTKEY</unmanaged>
<unmanaged-short>WM_GETHOTKEY</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.KeyFirst">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_KEYFIRST']/*"/>
<unmanaged>WM_KEYFIRST</unmanaged>
<unmanaged-short>WM_KEYFIRST</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.KeyDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_KEYDOWN']/*"/>
<unmanaged>WM_KEYDOWN</unmanaged>
<unmanaged-short>WM_KEYDOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.KeyUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_KEYUP']/*"/>
<unmanaged>WM_KEYUP</unmanaged>
<unmanaged-short>WM_KEYUP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.SystemKeyDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_SYSKEYDOWN']/*"/>
<unmanaged>WM_SYSKEYDOWN</unmanaged>
<unmanaged-short>WM_SYSKEYDOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.SystemKeyUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_SYSKEYUP']/*"/>
<unmanaged>WM_SYSKEYUP</unmanaged>
<unmanaged-short>WM_SYSKEYUP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.KeyLast">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_KEYLAST']/*"/>
<unmanaged>WM_KEYLAST</unmanaged>
<unmanaged-short>WM_KEYLAST</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.ImeKeyLast">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_IME_KEYLAST']/*"/>
<unmanaged>WM_IME_KEYLAST</unmanaged>
<unmanaged-short>WM_IME_KEYLAST</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.ImeKeyDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_IME_KEYDOWN']/*"/>
<unmanaged>WM_IME_KEYDOWN</unmanaged>
<unmanaged-short>WM_IME_KEYDOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.ImeKeyUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_IME_KEYUP']/*"/>
<unmanaged>WM_IME_KEYUP</unmanaged>
<unmanaged-short>WM_IME_KEYUP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.KeyState.HotKey">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WM_HOTKEY']/*"/>
<unmanaged>WM_HOTKEY</unmanaged>
<unmanaged-short>WM_HOTKEY</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.MouseButtonFlags">
<summary>
<p>There are many user-input devices beside the traditional keyboard and mouse. For example, user input can come from a joystick, a touch screen, a microphone, or other devices that allow great flexibility in user input. These devices are collectively known as Human Interface Devices (HIDs). The raw input API provides a stable and robust way for applications to accept raw input from any HID, including the keyboard and mouse.</p><p>This section covers the following topics:</p><p> </p><ul> <li>Raw</li> <li>Registration</li> <li>Reading</li> </ul>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_MOUSE_BUTTON_FLAGS']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RAW_MOUSE_BUTTON_FLAGS</unmanaged>
<unmanaged-short>RAW_MOUSE_BUTTON_FLAGS</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.LeftButtonDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_LEFT_BUTTON_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_LEFT_BUTTON_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_LEFT_BUTTON_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.LeftButtonUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_LEFT_BUTTON_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_LEFT_BUTTON_UP</unmanaged>
<unmanaged-short>RI_MOUSE_LEFT_BUTTON_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.RightButtonDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_RIGHT_BUTTON_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_RIGHT_BUTTON_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_RIGHT_BUTTON_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.RightButtonUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_RIGHT_BUTTON_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_RIGHT_BUTTON_UP</unmanaged>
<unmanaged-short>RI_MOUSE_RIGHT_BUTTON_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.MiddleButtonDown">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_MIDDLE_BUTTON_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_MIDDLE_BUTTON_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_MIDDLE_BUTTON_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.MiddleButtonUp">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_MIDDLE_BUTTON_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_MIDDLE_BUTTON_UP</unmanaged>
<unmanaged-short>RI_MOUSE_MIDDLE_BUTTON_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button1Down">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_1_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_1_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_1_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button1Up">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_1_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_1_UP</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_1_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button2Down">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_2_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_2_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_2_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button2Up">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_2_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_2_UP</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_2_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button3Down">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_3_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_3_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_3_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button3Up">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_3_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_3_UP</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_3_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button4Down">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_4_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_4_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_4_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button4Up">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_4_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_4_UP</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_4_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button5Down">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_5_DOWN']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_5_DOWN</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_5_DOWN</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.Button5Up">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_BUTTON_5_UP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_BUTTON_5_UP</unmanaged>
<unmanaged-short>RI_MOUSE_BUTTON_5_UP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.MouseWheel">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_MOUSE_WHEEL']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RI_MOUSE_WHEEL</unmanaged>
<unmanaged-short>RI_MOUSE_WHEEL</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseButtonFlags.None">
<summary>
None.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*"/>
<unmanaged>None</unmanaged>
<unmanaged-short>None</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.MouseMode">
<summary>
<p>There are many user-input devices beside the traditional keyboard and mouse. For example, user input can come from a joystick, a touch screen, a microphone, or other devices that allow great flexibility in user input. These devices are collectively known as Human Interface Devices (HIDs). The raw input API provides a stable and robust way for applications to accept raw input from any HID, including the keyboard and mouse.</p><p>This section covers the following topics:</p><p> </p><ul> <li>Raw</li> <li>Registration</li> <li>Reading</li> </ul>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_MOUSE_MODE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RAW_MOUSE_MODE</unmanaged>
<unmanaged-short>RAW_MOUSE_MODE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseMode.MoveRelative">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MOUSE_MOVE_RELATIVE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>MOUSE_MOVE_RELATIVE</unmanaged>
<unmanaged-short>MOUSE_MOVE_RELATIVE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseMode.MoveAbsolute">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MOUSE_MOVE_ABSOLUTE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>MOUSE_MOVE_ABSOLUTE</unmanaged>
<unmanaged-short>MOUSE_MOVE_ABSOLUTE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseMode.VirtualDesktop">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MOUSE_VIRTUAL_DESKTOP']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>MOUSE_VIRTUAL_DESKTOP</unmanaged>
<unmanaged-short>MOUSE_VIRTUAL_DESKTOP</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseMode.AttributesChanged">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MOUSE_ATTRIBUTES_CHANGED']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>MOUSE_ATTRIBUTES_CHANGED</unmanaged>
<unmanaged-short>MOUSE_ATTRIBUTES_CHANGED</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.MouseMode.MoveNoCoalesce">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MOUSE_MOVE_NOCOALESCE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>MOUSE_MOVE_NOCOALESCE</unmanaged>
<unmanaged-short>MOUSE_MOVE_NOCOALESCE</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawInputDataType">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_INPUT_DATA_TYPE']/*"/>
<msdn-id>ff561902</msdn-id>
<unmanaged>RAW_INPUT_DATA_TYPE</unmanaged>
<unmanaged-short>RAW_INPUT_DATA_TYPE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawInputDataType.Input">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_INPUT']/*"/>
<msdn-id>ff561902</msdn-id>
<unmanaged>RID_INPUT</unmanaged>
<unmanaged-short>RID_INPUT</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawInputDataType.Header">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_HEADER']/*"/>
<msdn-id>ff561902</msdn-id>
<unmanaged>RID_HEADER</unmanaged>
<unmanaged-short>RID_HEADER</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawInputDeviceInfoType">
<summary>
<p>There are many user-input devices beside the traditional keyboard and mouse. For example, user input can come from a joystick, a touch screen, a microphone, or other devices that allow great flexibility in user input. These devices are collectively known as Human Interface Devices (HIDs). The raw input API provides a stable and robust way for applications to accept raw input from any HID, including the keyboard and mouse.</p><p>This section covers the following topics:</p><p> </p><ul> <li>Raw</li> <li>Registration</li> <li>Reading</li> </ul>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_INPUT_DEVICE_INFO_TYPE']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RAW_INPUT_DEVICE_INFO_TYPE</unmanaged>
<unmanaged-short>RAW_INPUT_DEVICE_INFO_TYPE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawInputDeviceInfoType.PreparsedData">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDI_PREPARSEDDATA']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDI_PREPARSEDDATA</unmanaged>
<unmanaged-short>RIDI_PREPARSEDDATA</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawInputDeviceInfoType.DeviceName">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDI_DEVICENAME']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDI_DEVICENAME</unmanaged>
<unmanaged-short>RIDI_DEVICENAME</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawInputDeviceInfoType.DeviceInfo">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RIDI_DEVICEINFO']/*"/>
<msdn-id>ms645543</msdn-id>
<unmanaged>RIDI_DEVICEINFO</unmanaged>
<unmanaged-short>RIDI_DEVICEINFO</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.ScanCodeFlags">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RAW_SCAN_CODE_FLAGS']/*"/>
<unmanaged>RAW_SCAN_CODE_FLAGS</unmanaged>
<unmanaged-short>RAW_SCAN_CODE_FLAGS</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.ScanCodeFlags.Make">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_KEY_MAKE']/*"/>
<unmanaged>RI_KEY_MAKE</unmanaged>
<unmanaged-short>RI_KEY_MAKE</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.ScanCodeFlags.Break">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_KEY_BREAK']/*"/>
<unmanaged>RI_KEY_BREAK</unmanaged>
<unmanaged-short>RI_KEY_BREAK</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.ScanCodeFlags.E0">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_KEY_E0']/*"/>
<unmanaged>RI_KEY_E0</unmanaged>
<unmanaged-short>RI_KEY_E0</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.ScanCodeFlags.E1">
<summary>
No documentation.
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RI_KEY_E1']/*"/>
<unmanaged>RI_KEY_E1</unmanaged>
<unmanaged-short>RI_KEY_E1</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawInputFunctions">
<summary>
Functions
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.RawInput.RawInputFunctions']/*"/>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.GetRawInputDeviceList(SharpDX.RawInput.RawInputDevicelist[],System.Int32@,System.Int32)">
<summary>
<p>Enumerates the raw input devices attached to the system. </p>
</summary>
<param name="rawInputDeviceListRef"><dd> <p>An array of <strong><see cref="T:SharpDX.RawInput.RawInputDevicelist"/></strong> structures for the devices attached to the system. If <strong><c>null</c></strong>, the number of devices are returned in *<em>puiNumDevices</em>. </p> </dd></param>
<param name="uiNumDevicesRef"><dd> <p>If <em>pRawInputDeviceList</em> is <strong><c>null</c></strong>, the function populates this variable with the number of devices attached to the system; otherwise, this variable specifies the number of <strong><see cref="T:SharpDX.RawInput.RawInputDevicelist"/></strong> structures that can be contained in the buffer to which <em>pRawInputDeviceList</em> points. If this value is less than the number of devices attached to the system, the function returns the actual number of devices in this variable and fails with <strong><see cref="F:SharpDX.Win32.ErrorCode.InsufficientBuffer"/></strong>.</p> </dd></param>
<param name="cbSize"><dd> <p>The size of a <strong><see cref="T:SharpDX.RawInput.RawInputDevicelist"/></strong> structure, in bytes.</p> </dd></param>
<returns><p>If the function is successful, the return value is the number of devices stored in the buffer pointed to by <em>pRawInputDeviceList</em>.</p><p>On any other error, the function returns (<strong>UINT</strong>) -1 and <strong>GetLastError</strong> returns the error indication.</p></returns>
<remarks>
<p>The devices returned from this function are the mouse, the keyboard, and other Human Interface Device (HID) devices.</p><p>To get more detailed information about the attached devices, call <strong>GetRawInputDeviceInfo</strong> using the hDevice from <strong><see cref="T:SharpDX.RawInput.RawInputDevicelist"/></strong>. </p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='GetRawInputDeviceList']/*"/>
<msdn-id>ms645598</msdn-id>
<unmanaged>unsigned int GetRawInputDeviceList([Out, Buffer, Optional] RAWINPUTDEVICELIST* pRawInputDeviceList,[InOut] unsigned int* puiNumDevices,[In] unsigned int cbSize)</unmanaged>
<unmanaged-short>GetRawInputDeviceList</unmanaged-short>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.GetRegisteredRawInputDevices(SharpDX.RawInput.RawInputDevice[],System.Int32@,System.Int32)">
<summary>
<p>Retrieves the information about the raw input devices for the current application.</p>
</summary>
<param name="rawInputDevicesRef"><dd> <p>An array of <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structures for the application. </p> </dd></param>
<param name="uiNumDevicesRef"><dd> <p>The number of <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structures in *<em>pRawInputDevices</em>. </p> </dd></param>
<param name="cbSize"><dd> <p>The size, in bytes, of a <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structure. </p> </dd></param>
<returns><p>If successful, the function returns a non-negative number that is the number of <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structures written to the buffer. </p><p>If the <em>pRawInputDevices</em> buffer is too small or <strong><c>null</c></strong>, the function sets the last error as <strong><see cref="F:SharpDX.Win32.ErrorCode.InsufficientBuffer"/></strong>, returns -1, and sets <em>puiNumDevices</em> to the required number of devices. If the function fails for any other reason, it returns -1. For more details, call <strong>GetLastError</strong>. </p></returns>
<remarks>
<p>To receive raw input from a device, an application must register it by using <strong>RegisterRawInputDevices</strong>. </p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='GetRegisteredRawInputDevices']/*"/>
<msdn-id>ms645599</msdn-id>
<unmanaged>unsigned int GetRegisteredRawInputDevices([Out, Buffer, Optional] RAWINPUTDEVICE* pRawInputDevices,[InOut] unsigned int* puiNumDevices,[In] unsigned int cbSize)</unmanaged>
<unmanaged-short>GetRegisteredRawInputDevices</unmanaged-short>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.GetRawInputDeviceInfo(System.IntPtr,SharpDX.RawInput.RawInputDeviceInfoType,System.IntPtr,System.Int32@)">
<summary>
<p>Retrieves information about the raw input device.</p>
</summary>
<param name="hDevice"><dd> <p>A handle to the raw input device. This comes from the <em>lParam</em> of the <strong>WM_INPUT</strong> message, from the <strong>hDevice</strong> member of <strong><see cref="T:SharpDX.RawInput.RawInputHeader"/></strong>, or from <strong>GetRawInputDeviceList</strong>. It can also be <strong><c>null</c></strong> if an application inserts input data, for example, by using <strong>SendInput</strong>. </p> </dd></param>
<param name="uiCommand"><dd> <p>Specifies what data will be returned in <em>pData</em>. This parameter can be one of the following values. </p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.RawInputDeviceInfoType.DeviceName"/></strong></dt> <dt>0x20000007</dt> </dl> </td><td> <p><em>pData</em> points to a string that contains the device name. </p> <p>For this <em>uiCommand</em> only, the value in <em>pcbSize</em> is the character count (not the byte count).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.RawInputDeviceInfoType.DeviceInfo"/></strong></dt> <dt>0x2000000b</dt> </dl> </td><td> <p><em>pData</em> points to an <strong><see cref="T:SharpDX.RawInput.RawDeviceInformation"/></strong> structure.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.RawInputDeviceInfoType.PreparsedData"/></strong></dt> <dt>0x20000005</dt> </dl> </td><td> <p><em>pData</em> points to the previously parsed data.</p> </td></tr> </table> <p>?</p> </dd></param>
<param name="dataRef"><dd> <p>A reference to a buffer that contains the information specified by <em>uiCommand</em>. If <em>uiCommand</em> is <strong><see cref="F:SharpDX.RawInput.RawInputDeviceInfoType.DeviceInfo"/></strong>, set the <strong>cbSize</strong> member of <strong><see cref="T:SharpDX.RawInput.RawDeviceInformation"/></strong> to <code>sizeof(<see cref="T:SharpDX.RawInput.RawDeviceInformation"/>)</code> before calling <strong>GetRawInputDeviceInfo</strong>. </p> </dd></param>
<param name="cbSizeRef"><dd> <p>The size, in bytes, of the data in <em>pData</em>. </p> </dd></param>
<returns><p>If successful, this function returns a non-negative number indicating the number of bytes copied to <em>pData</em>. </p><p>If <em>pData</em> is not large enough for the data, the function returns -1. If <em>pData</em> is <strong><c>null</c></strong>, the function returns a value of zero. In both of these cases, <em>pcbSize</em> is set to the minimum size required for the <em>pData</em> buffer.</p><p>Call <strong>GetLastError</strong> to identify any other errors.</p></returns>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='GetRawInputDeviceInfoW']/*"/>
<msdn-id>ms645597</msdn-id>
<unmanaged>unsigned int GetRawInputDeviceInfoW([In, Optional] void* hDevice,[In] RAW_INPUT_DEVICE_INFO_TYPE uiCommand,[Out, Buffer, Optional] void* pData,[InOut] unsigned int* pcbSize)</unmanaged>
<unmanaged-short>GetRawInputDeviceInfoW</unmanaged-short>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.RegisterRawInputDevices(SharpDX.RawInput.RawInputDevice[],System.Int32,System.Int32)">
<summary>
<p>Registers the devices that supply the raw input data.</p>
</summary>
<param name="rawInputDevicesRef"><dd> <p>An array of <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structures that represent the devices that supply the raw input.</p> </dd></param>
<param name="uiNumDevices"><dd> <p>The number of <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structures pointed to by <em>pRawInputDevices</em>.</p> </dd></param>
<param name="cbSize"><dd> <p>The size, in bytes, of a <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structure.</p> </dd></param>
<returns><p><strong>TRUE</strong> if the function succeeds; otherwise, <strong><see cref="F:SharpDX.Result.False"/></strong>. If the function fails, call <strong>GetLastError</strong> for more information.</p></returns>
<remarks>
<p>To receive <strong>WM_INPUT</strong> messages, an application must first register the raw input devices using <strong>RegisterRawInputDevices</strong>. By default, an application does not receive raw input.</p><p>To receive <strong>WM_INPUT_DEVICE_CHANGE</strong> messages, an application must specify the <see cref="F:SharpDX.RawInput.DeviceFlags.DeviceNotify"/> flag for each device class that is specified by the usUsagePage and usUsage fields of the <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structure . By default, an application does not receive <strong>WM_INPUT_DEVICE_CHANGE</strong> notifications for raw input device arrival and removal.</p><p>If a <strong><see cref="T:SharpDX.RawInput.RawInputDevice"/></strong> structure has the <see cref="F:SharpDX.RawInput.DeviceFlags.Remove"/> flag set and the hwndTarget parameter is not set to <c>null</c>, then parameter validation will fail. </p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RegisterRawInputDevices']/*"/>
<msdn-id>ms645600</msdn-id>
<unmanaged>BOOL RegisterRawInputDevices([In, Buffer] const RAWINPUTDEVICE* pRawInputDevices,[In] unsigned int uiNumDevices,[In] unsigned int cbSize)</unmanaged>
<unmanaged-short>RegisterRawInputDevices</unmanaged-short>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.GetRawInputBuffer(SharpDX.RawInput.RawInput[],System.Int32@,System.Int32)">
<summary>
<p>Performs a buffered read of the raw input data.</p>
</summary>
<param name="dataRef"><dd> <p>A reference to a buffer of <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structures that contain the raw input data. If <strong><c>null</c></strong>, the minimum required buffer, in bytes, is returned in *<em>pcbSize</em>. </p> </dd></param>
<param name="cbSizeRef"><dd> <p>The size, in bytes, of a <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure. </p> </dd></param>
<param name="cbSizeHeader"><dd> <p>The size, in bytes, of the <strong><see cref="T:SharpDX.RawInput.RawInputHeader"/></strong> structure. </p> </dd></param>
<returns><p>If <em>pData</em> is <c>null</c> and the function is successful, the return value is zero. If <em>pData</em> is not <c>null</c> and the function is successful, the return value is the number of <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structures written to <em>pData</em>.</p><p>If an error occurs, the return value is (<strong>UINT</strong>)-1. Call <strong>GetLastError</strong> for the error code.</p></returns>
<remarks>
<p>Using <strong>GetRawInputBuffer</strong>, the raw input data is buffered in the array of <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structures. For an unbuffered read, use the <strong>GetMessage</strong> function to read in the raw input data. </p><p>The <strong>NEXTRAWINPUTBLOCK</strong> macro allows an application to traverse an array of <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structures.</p><p><strong>Note</strong>??To get the correct size of the raw input buffer, do not use *<em>pcbSize</em>, use *<em>pcbSize</em> * 8 instead. To ensure <strong>GetRawInputBuffer</strong> behaves properly on WOW64, you must align the <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure by 8 bytes. The following code shows how to align <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> for WOW64. </p><pre>[StructLayout(LayoutKind.Explicit)]
internal struct <see cref="T:SharpDX.RawInput.RawInput"/>
{ [FieldOffset(0)] public <see cref="T:SharpDX.RawInput.RawInputHeader"/> header; [FieldOffset(16+8)] public <see cref="T:SharpDX.RawInput.RawMouse"/> mouse; [FieldOffset(16+8)] public <see cref="T:SharpDX.RawInput.RawKeyboard"/> keyboard; [FieldOffset(16+8)] public <see cref="T:SharpDX.RawInput.RawHid"/> hid;
}
</pre>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='GetRawInputBuffer']/*"/>
<msdn-id>ms645595</msdn-id>
<unmanaged>unsigned int GetRawInputBuffer([Out, Buffer, Optional] RAWINPUT* pData,[InOut] unsigned int* pcbSize,[In] unsigned int cbSizeHeader)</unmanaged>
<unmanaged-short>GetRawInputBuffer</unmanaged-short>
</member>
<member name="M:SharpDX.RawInput.RawInputFunctions.GetRawInputData(System.IntPtr,SharpDX.RawInput.RawInputDataType,System.IntPtr,System.Int32@,System.Int32)">
<summary>
<p>Retrieves the raw input from the specified device.</p>
</summary>
<param name="hRawInput"><dd> <p>A handle to the <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure. This comes from the <em>lParam</em> in <strong>WM_INPUT</strong>. </p> </dd></param>
<param name="uiCommand"><dd> <p>The command flag. This parameter can be one of the following values. </p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.RawInputDataType.Header"/></strong></dt> <dt>0x10000005</dt> </dl> </td><td> <p>Get the header information from the <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.RawInputDataType.Input"/></strong></dt> <dt>0x10000003</dt> </dl> </td><td> <p>Get the raw data from the <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure.</p> </td></tr> </table> <p>?</p> </dd></param>
<param name="dataRef"><dd> <p>A reference to the data that comes from the <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure. This depends on the value of <em>uiCommand</em>. If <em>pData</em> is <strong><c>null</c></strong>, the required size of the buffer is returned in *<em>pcbSize</em>. </p> </dd></param>
<param name="cbSizeRef"><dd> <p>The size, in bytes, of the data in <em>pData</em>. </p> </dd></param>
<param name="cbSizeHeader"><dd> <p>The size, in bytes, of the <strong><see cref="T:SharpDX.RawInput.RawInputHeader"/></strong> structure. </p> </dd></param>
<returns><p>If <em>pData</em> is <strong><c>null</c></strong> and the function is successful, the return value is 0. If <em>pData</em> is not <strong><c>null</c></strong> and the function is successful, the return value is the number of bytes copied into pData.</p><p>If there is an error, the return value is (<strong>UINT</strong>)-1.</p></returns>
<remarks>
<p><strong>GetRawInputData</strong> gets the raw input one <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structure at a time. In contrast, <strong>GetRawInputBuffer</strong> gets an array of <strong><see cref="T:SharpDX.RawInput.RawInput"/></strong> structures.</p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='GetRawInputData']/*"/>
<msdn-id>ms645596</msdn-id>
<unmanaged>unsigned int GetRawInputData([In] HRAWINPUT hRawInput,[In] RAW_INPUT_DATA_TYPE uiCommand,[Out, Buffer, Optional] void* pData,[InOut] unsigned int* pcbSize,[In] unsigned int cbSizeHeader)</unmanaged>
<unmanaged-short>GetRawInputData</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawDeviceInformation">
<summary>
<p>Defines the raw input data coming from any device. </p>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>RID_DEVICE_INFO</unmanaged>
<unmanaged-short>RID_DEVICE_INFO</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformation.Size">
<summary>
<dd> <p>The size, in bytes, of the <strong><see cref="T:SharpDX.RawInput.RawDeviceInformation"/></strong> structure. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO::cbSize']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>unsigned int cbSize</unmanaged>
<unmanaged-short>unsigned int cbSize</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformation.Type">
<summary>
<dd> <p>The type of raw input data. This member can be one of the following values. </p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.DeviceType.HumanInputDevice"/></strong></dt> <dt>2</dt> </dl> </td><td> <p>Data comes from an HID that is not a keyboard or a mouse.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.DeviceType.Keyboard"/></strong></dt> <dt>1</dt> </dl> </td><td> <p>Data comes from a keyboard.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.RawInput.DeviceType.Mouse"/></strong></dt> <dt>0</dt> </dl> </td><td> <p>Data comes from a mouse.</p> </td></tr> </table> <p>?</p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO::dwType']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>RAW_DEVICE_TYPE dwType</unmanaged>
<unmanaged-short>RAW_DEVICE_TYPE dwType</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformation.Mouse">
<summary>
<dd> <p>If <strong>dwType</strong> is <strong><see cref="F:SharpDX.RawInput.DeviceType.Mouse"/></strong>, this is the <strong><see cref="T:SharpDX.RawInput.RawDeviceInformationMouse"/></strong> structure that defines the mouse. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO::mouse']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>RID_DEVICE_INFO_MOUSE mouse</unmanaged>
<unmanaged-short>RID_DEVICE_INFO_MOUSE mouse</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformation.Keyboard">
<summary>
<dd> <p>If <strong>dwType</strong> is <strong><see cref="F:SharpDX.RawInput.DeviceType.Keyboard"/></strong>, this is the <strong><see cref="T:SharpDX.RawInput.RawDeviceInformationKeyboard"/></strong> structure that defines the keyboard. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO::keyboard']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>RID_DEVICE_INFO_KEYBOARD keyboard</unmanaged>
<unmanaged-short>RID_DEVICE_INFO_KEYBOARD keyboard</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformation.Hid">
<summary>
<dd> <p>If <strong>dwType</strong> is <strong><see cref="F:SharpDX.RawInput.DeviceType.HumanInputDevice"/></strong>, this is the <strong><see cref="T:SharpDX.RawInput.RawDeviceInformationHid"/></strong> structure that defines the HID device. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO::hid']/*"/>
<msdn-id>ms645581</msdn-id>
<unmanaged>RID_DEVICE_INFO_HID hid</unmanaged>
<unmanaged-short>RID_DEVICE_INFO_HID hid</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawDeviceInformationHid">
<summary>
<p>Defines the raw input data coming from the specified Human Interface Device (HID). </p>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>RID_DEVICE_INFO_HID</unmanaged>
<unmanaged-short>RID_DEVICE_INFO_HID</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationHid.VendorId">
<summary>
<dd> <p>The vendor identifier for the HID. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID::dwVendorId']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>unsigned int dwVendorId</unmanaged>
<unmanaged-short>unsigned int dwVendorId</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationHid.ProductId">
<summary>
<dd> <p>The product identifier for the HID. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID::dwProductId']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>unsigned int dwProductId</unmanaged>
<unmanaged-short>unsigned int dwProductId</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationHid.VersionNumber">
<summary>
<dd> <p>The version number for the HID. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID::dwVersionNumber']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>unsigned int dwVersionNumber</unmanaged>
<unmanaged-short>unsigned int dwVersionNumber</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationHid.UsagePage">
<summary>
<dd> <p>The top-level collection Usage Page for the device. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID::usUsagePage']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>HID_USAGE_PAGE usUsagePage</unmanaged>
<unmanaged-short>HID_USAGE_PAGE usUsagePage</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationHid.Usage">
<summary>
<dd> <p>The top-level collection Usage for the device. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_HID::usUsage']/*"/>
<msdn-id>ms645584</msdn-id>
<unmanaged>HID_USAGE_ID usUsage</unmanaged>
<unmanaged-short>HID_USAGE_ID usUsage</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawDeviceInformationKeyboard">
<summary>
<p>Defines the raw input data coming from the specified keyboard. </p>
</summary>
<remarks>
<p>For the keyboard, the Usage Page is 1 and the Usage is 6. </p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>RID_DEVICE_INFO_KEYBOARD</unmanaged>
<unmanaged-short>RID_DEVICE_INFO_KEYBOARD</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.Type">
<summary>
<dd> <p>The type of the keyboard. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwType']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwType</unmanaged>
<unmanaged-short>unsigned int dwType</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.SubType">
<summary>
<dd> <p>The subtype of the keyboard. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwSubType']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwSubType</unmanaged>
<unmanaged-short>unsigned int dwSubType</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.KeyboardMode">
<summary>
<dd> <p>The scan code mode. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwKeyboardMode']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwKeyboardMode</unmanaged>
<unmanaged-short>unsigned int dwKeyboardMode</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.NumberOfFunctionKeys">
<summary>
<dd> <p>The number of function keys on the keyboard.</p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwNumberOfFunctionKeys']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwNumberOfFunctionKeys</unmanaged>
<unmanaged-short>unsigned int dwNumberOfFunctionKeys</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.NumberOfIndicators">
<summary>
<dd> <p>The number of LED indicators on the keyboard.</p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwNumberOfIndicators']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwNumberOfIndicators</unmanaged>
<unmanaged-short>unsigned int dwNumberOfIndicators</unmanaged-short>
</member>
<member name="F:SharpDX.RawInput.RawDeviceInformationKeyboard.NumberOfKeysTotal">
<summary>
<dd> <p>The total number of keys on the keyboard. </p> </dd>
</summary>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_KEYBOARD::dwNumberOfKeysTotal']/*"/>
<msdn-id>ms645587</msdn-id>
<unmanaged>unsigned int dwNumberOfKeysTotal</unmanaged>
<unmanaged-short>unsigned int dwNumberOfKeysTotal</unmanaged-short>
</member>
<member name="T:SharpDX.RawInput.RawDeviceInformationMouse">
<summary>
<p>Defines the raw input data coming from the specified mouse.</p>
</summary>
<remarks>
<p>For the mouse, the Usage Page is 1 and the Usage is 2.</p>
</remarks>
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='RID_DEVICE_INFO_MOUSE']/*"/>
<msdn-id>ms645589</msdn-id>