Sample Code
Windows Driver Samples/ HID Minidriver Sample (UMDF Version 1)/ C++/ driver/ queue.cpp/
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 | /*++ Copyright (C) Microsoft Corporation, All Rights Reserved. Module Name: Queue.cpp Abstract: This module contains the implementation of the driver's queue callback object. Environment: Windows User-Mode Driver Framework (WUDF) --*/ #include "internal.h" #include "winioctl.h" #include "queue.h" #if defined(EVENT_TRACING) #include "queue.tmh" #endif // // This is the default report descriptor for the virtual Hid device returned // by the mini driver in response to IOCTL_HID_GET_REPORT_DESCRIPTOR. // HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = { 0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page) 0x09,0x01, // USAGE (Vendor Usage 0x01) 0xA1,0x01, // COLLECTION (Application) 0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1) 0x09,0x01, // USAGE (Vendor Usage 0x01) 0x15,0x00, // LOGICAL_MINIMUM(0) 0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255) 0x75,0x08, // REPORT_SIZE (0x08) //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT 0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT 0xB1,0x00, // FEATURE (Data,Ary,Abs) 0x09,0x01, // USAGE (Vendor Usage 0x01) 0x75,0x08, // REPORT_SIZE (0x08) //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT 0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT 0x81,0x00, // INPUT (Data,Ary,Abs) 0x09,0x01, // USAGE (Vendor Usage 0x01) 0x75,0x08, // REPORT_SIZE (0x08) //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT 0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT 0x91,0x00, // OUTPUT (Data,Ary,Abs) 0xC0, // END_COLLECTION }; // // This is the default HID descriptor returned by the mini driver // in response to IOCTL_HID_GET_DEVICE_DESCRIPTOR. The size // of report descriptor is currently the size of G_DefaultReportDescriptor. // HID_DESCRIPTOR G_DefaultHidDescriptor = { 0x09, // length of HID descriptor 0x21, // descriptor type == HID 0x21 0x0100, // hid spec release 0x00, // country code == Not Specified 0x01, // number of HID class descriptors { 0x22, // report descriptor type 0x22 sizeof (G_DefaultReportDescriptor) } // total length of report descriptor }; HRESULT CMyQueue::CreateInstance( _In_ PCMyDevice Device, _Out_ CMyQueue **Queue ) /*++ Routine Description: This method creates and initializs an instance of the driver's queue callback object. Arguments: FxDeviceInit - the settings for the device. Queue - a location to store the referenced pointer to the queue object. Return Value: Status --*/ { CMyQueue *queue; HRESULT hr = S_OK; // // Allocate a new instance of the device class. // queue = new CMyQueue(Device); if (NULL == queue) { hr = E_OUTOFMEMORY; } // // Initialize the instance. // if (SUCCEEDED(hr)) { hr = queue->Initialize(Device->GetFxDevice()); } if (SUCCEEDED(hr)) { queue->AddRef(); *Queue = queue; } if (NULL != queue) { queue->Release(); } return hr; } HRESULT CMyQueue::QueryInterface( _In_ REFIID InterfaceId, _Out_ PVOID *Object ) /*++ Routine Description: This method is called to get a pointer to one of the object's callback interfaces. Arguments: InterfaceId - the interface being requested Object - a location to store the interface pointer if successful Return Value: S_OK or E_NOINTERFACE --*/ { HRESULT hr; if (IsEqualIID(InterfaceId, __uuidof(IQueueCallbackDeviceIoControl))) { hr = S_OK; AddRef(); *Object = static_cast <IQueueCallbackDeviceIoControl *>( this ); } else { hr = CUnknown::QueryInterface(InterfaceId, Object); } return hr; } HRESULT CMyQueue::Initialize( _In_ IWDFDevice *FxDevice ) /*++ Routine Description: This method initializes the queue callback object. Any operations which need to be performed before the caller can use the callback object, but which couldn't be done in the constructor becuase they could fail would be placed here. Arguments: FxDevice - the device which this Queue is for. Return Value: status. --*/ { IWDFIoQueue *fxQueue; HRESULT hr; // // Create the framework queue // IUnknown *unknown = QueryIUnknown(); hr = FxDevice->CreateIoQueue( unknown, TRUE, // bDefaultQueue WdfIoQueueDispatchParallel, FALSE, // bPowerManaged TRUE, // bAllowZeroLengthRequests &fxQueue ); if (FAILED(hr)) { Trace( TRACE_LEVEL_ERROR, "%!FUNC!: Could not create default I/O queue, %!hresult!" , hr ); } if (SUCCEEDED(hr)) { m_FxQueue = fxQueue; // // m_FxQueue is kept as a Weak reference to framework Queue object to avoid // circular reference. This object's lifetime is contained within // framework Queue object's lifetime // fxQueue->Release(); } unknown->Release(); return hr; } VOID STDMETHODCALLTYPE CMyQueue::OnDeviceIoControl( _In_ IWDFIoQueue *FxQueue, _In_ IWDFIoRequest *FxRequest, _In_ ULONG ControlCode, _In_ SIZE_T InputBufferSizeInBytes, _In_ SIZE_T OutputBufferSizeInBytes ) /*++ Routine Description: DeviceIoControl dispatch routine Aruments: FxQueue - Framework Queue instance FxRequest - Framework Request instance ControlCode - IO Control Code InputBufferSizeInBytes - Lenth of input buffer OutputBufferSizeInBytes - Lenth of output buffer Always succeeds DeviceIoIoctl Return Value: VOID --*/ { UNREFERENCED_PARAMETER(FxQueue); UNREFERENCED_PARAMETER(InputBufferSizeInBytes); UNREFERENCED_PARAMETER(OutputBufferSizeInBytes); HRESULT hr = S_OK; BOOLEAN completeRequest = TRUE; IWDFIoRequest2 *fxRequest2; hr = FxRequest->QueryInterface(IID_PPV_ARGS(&fxRequest2)); if (FAILED(hr)){ FxRequest->Complete(hr); return ; } fxRequest2->Release(); switch (ControlCode) { case IOCTL_HID_GET_DEVICE_DESCRIPTOR: // METHOD_NEITHER // // Retrieves the device's HID descriptor. // hr = GetHidDescriptor(fxRequest2); break ; case IOCTL_HID_GET_DEVICE_ATTRIBUTES: // METHOD_NEITHER // //Retrieves a device's attributes in a HID_DEVICE_ATTRIBUTES structure. // hr = GetDeviceAttributes(fxRequest2); break ; case IOCTL_HID_GET_REPORT_DESCRIPTOR: // METHOD_NEITHER // //Obtains the report descriptor for the HID device. // hr = GetReportDescriptor(fxRequest2); break ; case IOCTL_HID_READ_REPORT: // METHOD_NEITHER // // Returns a report from the device into a class driver-supplied // buffer. // hr = ReadReport(fxRequest2, &completeRequest); break ; case IOCTL_UMDF_HID_GET_FEATURE: // METHOD_NEITHER hr = GetFeature(fxRequest2); break ; case IOCTL_UMDF_HID_GET_INPUT_REPORT: // METHOD_NEITHER hr = GetInputReport(fxRequest2); break ; case IOCTL_UMDF_HID_SET_FEATURE: // METHOD_NEITHER hr = SetFeature(fxRequest2); break ; case IOCTL_UMDF_HID_SET_OUTPUT_REPORT: // METHOD_NEITHER hr = SetOutputReport(fxRequest2); break ; case IOCTL_HID_WRITE_REPORT: // METHOD_NEITHER // // Transmits a class driver-supplied report to the device. // hr = WriteReport(fxRequest2); break ; case IOCTL_HID_GET_STRING: // METHOD_NEITHER case IOCTL_HID_GET_INDEXED_STRING: // METHOD_OUT_DIRECT // // Transmits a class driver-supplied report to the device. // hr = GetString(fxRequest2); break ; case IOCTL_HID_SEND_IDLE_NOTIFICATION_REQUEST: // METHOD_NEITHER // // This has the USBSS Idle notification callback. If the lower driver // can handle it (e.g. USB stack can handle it) then pass it down // otherwise complete it here as not inplemented. For a virtual // device, idling is not needed. // // Not implemented. fall through... // case IOCTL_HID_ACTIVATE_DEVICE: // METHOD_NEITHER case IOCTL_HID_DEACTIVATE_DEVICE: // METHOD_NEITHER case IOCTL_GET_PHYSICAL_DESCRIPTOR: // METHOD_OUT_DIRECT // // Not implemented. fall through... // default : hr = HRESULT_FROM_NT(STATUS_NOT_IMPLEMENTED); break ; } // // Complete the request. Information value has already been set by request // handlers. // if (completeRequest) { fxRequest2->Complete(hr); } return ; } HRESULT CMyQueue::GetHidDescriptor( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: This routines returns HID descriptor. Arguments: Request - Handle to request object Return Value: HRESULT --*/ { HRESULT hr = S_OK; size_t bytesToCopy = 0; IWDFMemory *memory = NULL; // // Retrieve buffer // hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); goto exit ; } // // Copy hard-coded HID Descriptor to request memory. // bytesToCopy = G_DefaultHidDescriptor.bLength; if (bytesToCopy == 0) { hr = HRESULT_FROM_NT(STATUS_DATA_ERROR); Trace(TRACE_LEVEL_ERROR, "%!FUNC! desriptor length is zero %!hresult!\n" , hr); goto exit ; } hr = memory->CopyFromBuffer(0, ( PVOID ) &G_DefaultHidDescriptor, bytesToCopy); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "%!FUNC! Buffer copy failed %!hresult!\n" , hr); goto exit ;; } // // Report how many bytes were copied // FxRequest->SetInformation(bytesToCopy); exit : SAFE_RELEASE(memory); return hr; } HRESULT CMyQueue::GetReportDescriptor( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description Handles IOCTL_UMDF_HID_GET_REPORT_DESCRIPTOR Arguments: Return Value: NT status value --*/ { HRESULT hr = S_OK; size_t bytesToCopy = 0; IWDFMemory *memory = NULL; hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); goto exit ; } bytesToCopy = memory->GetSize(); if (bytesToCopy != sizeof (G_DefaultReportDescriptor)) { hr = E_INVALIDARG; Trace(TRACE_LEVEL_ERROR, "Incorrect buffer size received %!hresult!\n" , hr); goto exit ; } hr = memory->CopyFromBuffer(0, ( PVOID ) &G_DefaultReportDescriptor, sizeof (G_DefaultReportDescriptor)); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "%!FUNC! Buffer copy failed %!hresult!\n" , hr); goto exit ;; } // // Report how many bytes were copied // FxRequest->SetInformation( sizeof (G_DefaultReportDescriptor)); exit : SAFE_RELEASE(memory); return hr; } HRESULT CMyQueue::GetDeviceAttributes( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Finds the HID descriptor and copies it into the buffer provided by the Request. Arguments: Device - Handle to WDF Device Object Request - Handle to request object Return Value: NT status code. --*/ { HRESULT hr = S_OK; IWDFMemory *memory = NULL; PVOID buffer; SIZE_T bufferSizeCb; hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); return hr; } buffer = memory->GetDataBuffer(&bufferSizeCb); memory->Release(); if (bufferSizeCb != sizeof (HID_DEVICE_ATTRIBUTES)) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient HID attributes buffer size %!hresult!\n" , hr); return hr; } CopyMemory(buffer, &m_Device->m_Attributes, sizeof (HID_DEVICE_ATTRIBUTES)); // // Report how many bytes were copied // FxRequest->SetInformation( sizeof (HID_DEVICE_ATTRIBUTES)); return hr; } HRESULT CMyQueue::ReadReport( _In_ IWDFIoRequest2 *FxRequest, _Out_ BOOLEAN * CompleteRequest ) { HRESULT hr; PTP_TIMER timer = NULL; // // start the timer if not already started // timer = m_Device->m_ManualQueue->GetTimer(); if (IsThreadpoolTimerSet(timer) == FALSE) { FILETIME dueTime; Trace(TRACE_LEVEL_INFORMATION, "*** Setting the timer ***\n" ); * reinterpret_cast < PLONGLONG >(&dueTime) = - static_cast < LONGLONG >(MILLI_SECOND_TO_NANO100(1000)); SetThreadpoolTimer(timer, &dueTime, 5000, // ms periodic 0 // optional delay in ms ); } // // forward the request to manual queue // hr = FxRequest->ForwardToIoQueue(m_Device->m_ManualQueue->GetQueue()); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "%!FUNC! ForwardToIoQueue returned failure %!hresult!\n" , hr); *CompleteRequest = TRUE; } else { *CompleteRequest = FALSE; } return hr; } HRESULT CMyQueue::GetFeature( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_UMDF_HID_GET_FEATURE for all the collection. Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, outBufferCb; ULONG reportSize; PVOID inBuffer; UCHAR reportId; PUCHAR reportBuffer = NULL; PMY_DEVICE_ATTRIBUTES myAttributes; // ************************************************************************* // IOCTL_UMDF_HID_GET_FEATURE // Input report ID: // UMDF driver retrieves report ID associated with this collection // by retrieving the buffer containing report ID by calling // IWDFRequest::GetInputMemory() or RetrieveInputMemory. // Output report buffer and length: // UMDF driver calls IWDFRequest::GetOutputMemory() to get memory // buffer and its length. The driver fills the buffer with feature data. // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "GetFeature\n" ); // // Get input report ID // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveINputMemory failed %!hresult!\n" , hr); return hr; } inBuffer = memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); if (inBufferCb < sizeof (reportId)) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient buffer size %!hresult!\n" , hr); return hr; } reportId = *( PUCHAR )inBuffer; if (reportId != CONTROL_COLLECTION_REPORT_ID) { // // If collection ID is not for control collection then handle // this request just as you would for a regular collection. // hr = HRESULT_FROM_NT(STATUS_INVALID_PARAMETER); Trace(TRACE_LEVEL_INFORMATION, "Unexpected request, %!hresult!\n" , hr); return hr; } // // Get output buffer // hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); return hr; } reportBuffer = ( PUCHAR ) memory->GetDataBuffer(&outBufferCb); SAFE_RELEASE(memory); // // Since output buffer is for write only (no read allowed by UMDF in output // buffer), any read from output buffer would be reading garbage), so don't // let app embed custom control code in output buffer. The minidriver can // support multiple features using separate report ID instead of using // custom control code. Since this is targeted at report ID 1, we know it // is a request for getting attributes. // reportSize = sizeof (MY_DEVICE_ATTRIBUTES) + 1; // +1 for report ID if (outBufferCb < reportSize) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient report buffer size %!hresult!\n" , hr); return hr; } // // Since this device has one report ID, hidclass would pass on the report // ID in the buffer (it wouldn't if report descriptor did not have any report // ID). However, since UMDF allows only writes to an output buffer, we can't // "read" the report ID from "output" buffer. There is no need to read the // report ID since we get it other way as shown above, however this is // something to keep in mind. // reportBuffer++; // skip the report ID myAttributes = (PMY_DEVICE_ATTRIBUTES) reportBuffer; myAttributes->ProductID = m_Device->m_Attributes.ProductID; myAttributes->VendorID = m_Device->m_Attributes.VendorID; myAttributes->VersionNumber = m_Device->m_Attributes.VersionNumber; // // Report how many bytes were copied // FxRequest->SetInformation(reportSize); hr = S_OK; return hr; } HRESULT CMyQueue::SetFeature( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_UMDF_HID_SET_FEATURE for all the collection. For control collection (custom defined collection) it handles the user-defined control codes for sideband communication Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, reportSize; UCHAR reportId; SIZE_T pOutBufferSize; PHIDMINI_CONTROL_INFO controlInfo = NULL; // ************************************************************************* // IOCTL_UMDF_HID_SET_FEATURE // Input report ID: // UMDF driver retrieves report ID associated with this collection // through pOutBufferSize parameter passed to a call to // IWDFRequest::GetDeviceIoControlParameters DDI. // Input report buffer and length: // UMDF driver calls IWDFRequest::GetInputMemory() to get memory // buffer and its length. The buffer contains feature report data that // driver transfers to the device. // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "SetFeature\n" ); // // Get report ID if needed. // FxRequest->GetDeviceIoControlParameters(NULL, NULL, &pOutBufferSize); reportId = ( UCHAR ) pOutBufferSize; if (reportId != CONTROL_COLLECTION_REPORT_ID) { // // If collection ID is not for control collection then handle // this request just as you would for a regular collection. // hr = HRESULT_FROM_NT(STATUS_INVALID_PARAMETER); Trace(TRACE_LEVEL_INFORMATION, "Unknown request, %!hresult!\n" , hr); return hr; } // // Get input report buffer. // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveInputMemory failed %!hresult!\n" , hr); return hr; } controlInfo = (PHIDMINI_CONTROL_INFO)memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); // // before touching control code make sure buffer is big enough. // reportSize = sizeof (HIDMINI_CONTROL_INFO); Trace(TRACE_LEVEL_INFORMATION, "Expected report size: %I64d\n" , reportSize); if (inBufferCb < reportSize) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected buffer size %I64d, expected %I64d %!hresult!\n" , inBufferCb, reportSize, hr); return hr; } switch (controlInfo->ControlCode) { case HIDMINI_CONTROL_CODE_SET_ATTRIBUTES: // // Store the device attributes in device extension // m_Device->m_Attributes.ProductID = controlInfo->u.Attributes.ProductID; m_Device->m_Attributes.VendorID = controlInfo->u.Attributes.VendorID; m_Device->m_Attributes.VersionNumber = controlInfo->u.Attributes.VersionNumber; // // set status and information // FxRequest->SetInformation(reportSize); hr = S_OK; break ; case HIDMINI_CONTROL_CODE_DUMMY1: Trace(TRACE_LEVEL_INFORMATION, "Control Code HIDMINI_CONTROL_CODE_DUMMY1\n" ); hr = HRESULT_FROM_NT(STATUS_NOT_IMPLEMENTED); break ; case HIDMINI_CONTROL_CODE_DUMMY2: Trace(TRACE_LEVEL_INFORMATION, "Control Code HIDMINI_CONTROL_CODE_DUMMY2\n" ); hr = HRESULT_FROM_NT(STATUS_NOT_IMPLEMENTED); break ; default : Trace(TRACE_LEVEL_INFORMATION, "Unknown control Code\n" ); hr = HRESULT_FROM_NT(STATUS_NOT_IMPLEMENTED); break ; } return hr; } HRESULT CMyQueue::GetInputReport( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_UMDF_HID_GET_INPUT_REPORT for all the collection. Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, outBufferCb; ULONG reportSize; PVOID inBuffer; UCHAR reportId; PHIDMINI_INPUT_REPORT reportBuffer = NULL; // ************************************************************************* // IOCTL_UMDF_HID_GET_INPUT_REPORT // Input report ID: // UMDF driver retrieves report ID associated with this collection // by retrieving the buffer containing report ID by calling // IWDFRequest::RetrieveInputMemory(). // Output report buffer and length: // UMDF driver calls IWDFRequest::RetrieveOutputMemory() to get memory // buffer and its length. The driver fills the buffer with feature data. // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "GetInputReport\n" ); // // Get input report ID // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveInputMemory failed %!hresult!\n" , hr); return hr; } inBuffer = memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); if (inBufferCb < sizeof (reportId)) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient buffer size %!hresult!\n" , hr); return hr; } reportId = *( PUCHAR )inBuffer; if (reportId != CONTROL_COLLECTION_REPORT_ID) { // // If collection ID is not for control collection then handle // this request just as you would for a regular collection. // hr = HRESULT_FROM_NT(STATUS_INVALID_PARAMETER); Trace(TRACE_LEVEL_INFORMATION, "Unexpected request, %!hresult!\n" , hr); return hr; } // // Get output buffer // hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); return hr; } reportBuffer = (PHIDMINI_INPUT_REPORT) memory->GetDataBuffer(&outBufferCb); SAFE_RELEASE(memory); reportSize = sizeof (HIDMINI_INPUT_REPORT); if (outBufferCb < reportSize) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient report buffer size %!hresult!\n" , hr); return hr; } reportBuffer->ReportId = CONTROL_COLLECTION_REPORT_ID; reportBuffer->Data = m_OutputReport; Trace(TRACE_LEVEL_INFORMATION, "Returning %d in input report\n" , m_OutputReport); // // Report how many bytes were copied // FxRequest->SetInformation(reportSize); hr = S_OK; return hr; } HRESULT CMyQueue::SetOutputReport( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_UMDF_HID_SET_OUTPUT_REPORT for all the collection. Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, reportSize; UCHAR reportId; SIZE_T pOutBufferSize; PHIDMINI_OUTPUT_REPORT reportBuffer = NULL; // ************************************************************************* // IOCTL_UMDF_HID_SET_OUTPUT_REPORT // Input report ID: // UMDF driver retrieves report ID associated with this collection // through pOutBufferSize parameter passed to a call to // IWDFRequest::GetDeviceIoControlParameters DDI. // Input report buffer and length: // UMDF driver calls IWDFRequest::GetInputMemory() to get memory // buffer and its length. The buffer contains feature report data that // driver transfers to the device. // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "SetOutputReport\n" ); // // Get report ID if needed. // FxRequest->GetDeviceIoControlParameters(NULL, NULL, &pOutBufferSize); reportId = ( UCHAR ) pOutBufferSize; if (reportId != CONTROL_COLLECTION_REPORT_ID) { // // If collection ID is not for control collection then handle // this request just as you would for a regular collection. // hr = HRESULT_FROM_NT(STATUS_INVALID_PARAMETER); Trace(TRACE_LEVEL_INFORMATION, "Unknown request, %!hresult!\n" , hr); return hr; } // // Get input report buffer. // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveInputMemory failed %!hresult!\n" , hr); return hr; } reportBuffer = (PHIDMINI_OUTPUT_REPORT)memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); // // before touching buffer make sure buffer is big enough. // reportSize = sizeof (PHIDMINI_OUTPUT_REPORT); Trace(TRACE_LEVEL_INFORMATION, "Expected report size: %I64d\n" , reportSize); if (inBufferCb < reportSize) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected buffer size %I64d, expected %I64d %!hresult!\n" , inBufferCb, reportSize, hr); return hr; } m_OutputReport = reportBuffer->Data; Trace(TRACE_LEVEL_INFORMATION, "Received %d in output report\n" , reportBuffer->Data); // // Report how many bytes were copied // FxRequest->SetInformation(reportSize); hr = S_OK; return hr; } HRESULT CMyQueue::WriteReport( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_HID_WRITE_REPORT all the collection. Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, reportSize; UCHAR reportId; SIZE_T pOutBufferSize; PHIDMINI_OUTPUT_REPORT outputReport = NULL; // ************************************************************************* // IOCTL_HID_WRITE_REPORT // Input report ID: // UMDF driver retrieves report ID associated with this collection // through pOutBufferSize parameter passed to a call to // IWDFRequest::GetDeviceIoControlParameters DDI. // Input report buffer and length: // UMDF driver calls IWDFRequest::GetInputMemory() to get memory // buffer and its length. The buffer contains feature report data that // driver transfers to the device. // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "WriteReport\n" ); // // Get report ID if needed. // FxRequest->GetDeviceIoControlParameters(NULL, NULL, &pOutBufferSize); reportId = ( UCHAR ) pOutBufferSize; if (reportId != CONTROL_COLLECTION_REPORT_ID) { // // If collection ID is not for control collection then handle // this request just as you would for a regular collection. // hr = HRESULT_FROM_NT(STATUS_INVALID_PARAMETER); Trace(TRACE_LEVEL_INFORMATION, "Unknown request, %!hresult!\n" , hr); return hr; } // // Get input report buffer. // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveINputMemory failed %!hresult!\n" , hr); return hr; } outputReport = (PHIDMINI_OUTPUT_REPORT) memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); // // make sure buffer is big enough. // reportSize = sizeof (HIDMINI_OUTPUT_REPORT); if (inBufferCb < reportSize) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected buffer size %!hresult!\n" , hr); return hr; } // // Store the device data in device extension. // m_Device->m_DeviceData = outputReport->Data; // // set status and information // FxRequest->SetInformation(reportSize); hr = S_OK; return hr; } HRESULT CMyQueue::GetString( _In_ IWDFIoRequest2 *FxRequest ) /*++ Routine Description: Handles IOCTL_HID_GET_INDEXED_STRING and IOCTL_HID_GET_STRING. Arguments: Request - Pointer to Request Packet. Return Value: NT status code. --*/ { HRESULT hr; IWDFMemory *memory = NULL; SIZE_T inBufferCb, outBufferCb, stringSizeCb; PVOID inBuffer, outBuffer; ULONG languageId, stringIndex, stringId; BOOLEAN isIndexedString = FALSE; ULONG ioctl; PWSTR string = NULL; // ************************************************************************* // IOCTL_HID_GET_INDEXED_STRING/IOCTL_HID_GET_STRING // Input: // UMDF driver calls IWDFRequest::GetInputMemory() to get the buffer // that contains an INT value that describes the string to be retrieved. // The most significant two bytes of the INT value contain the language // ID (for example, a value of 1033 indicates English). // The least significant two bytes of the INT value contain the string // index in cae of IOCTL_HID_GET_INDEXED_STRING. // In case of IOCTL_HID_GET_STRING, the two least significant bytes // contain one of the following three constant values: // HID_STRING_ID_IMANUFACTURER, HID_STRING_ID_IPRODUCT, // HID_STRING_ID_ISERIALNUMBER. // Output: // UMDF driver calls IWDFRequest::GetOutputMemory() to get the output // buffer and fill it with the retrieved string (a NULL-terminated wide // character string). // // ************************************************************************* Trace(TRACE_LEVEL_INFORMATION, "GetIndexedString\n" ); // // Get input report buffer. // hr = FxRequest->RetrieveInputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveINputMemory failed %!hresult!\n" , hr); return hr; } inBuffer = memory->GetDataBuffer(&inBufferCb); SAFE_RELEASE(memory); // // make sure buffer is big enough. // if (inBufferCb < sizeof ( ULONG )) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected input buffer size %!hresult!\n" , hr); return hr; } FxRequest->GetDeviceIoControlParameters(&ioctl, NULL, NULL); if (ioctl == IOCTL_HID_GET_INDEXED_STRING) { isIndexedString = TRUE; } // // The most significant two bytes of the INT value contain the language // ID (for example, a value of 1033 indicates English). // languageId = (*( PULONG )inBuffer) >> 16; UNREFERENCED_PARAMETER(languageId); if (isIndexedString) { // // The least significant two bytes of the INT value contain the string index. // stringIndex = ((*( PULONG )inBuffer) & 0x0ffff); if (stringIndex != VHIDMINI_DEVICE_STRING_INDEX) { hr = E_INVALIDARG; Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected string index %!hresult!\n" , hr); return hr; } stringSizeCb = sizeof (VHIDMINI_DEVICE_STRING); string = VHIDMINI_DEVICE_STRING; } else { // // The least significant two bytes of the INT value contain the string Id. // stringId = ((*( PULONG )inBuffer) & 0x0ffff); switch (stringId){ case HID_STRING_ID_IMANUFACTURER: stringSizeCb = sizeof (VHIDMINI_MANUFACTURER_STRING); string = VHIDMINI_MANUFACTURER_STRING; break ; case HID_STRING_ID_IPRODUCT: stringSizeCb = sizeof (VHIDMINI_PRODUCT_STRING); string = VHIDMINI_PRODUCT_STRING; break ; case HID_STRING_ID_ISERIALNUMBER: stringSizeCb = sizeof (VHIDMINI_SERIAL_NUMBER_STRING); string = VHIDMINI_SERIAL_NUMBER_STRING; break ; default : stringSizeCb = 0; string = NULL; break ; } } // // Get output buffer // hr = FxRequest->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveOutputMemory failed %!hresult!\n" , hr); return hr; } outBuffer = ( PUCHAR ) memory->GetDataBuffer(&outBufferCb); SAFE_RELEASE(memory); if (outBufferCb < stringSizeCb) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Unexpected output buffer size %!hresult!\n" , hr); return hr; } CopyMemory(outBuffer, string, stringSizeCb); // // set status and information // FxRequest->SetInformation(stringSizeCb); hr = S_OK; return hr; } HRESULT CMyManualQueue::CreateInstance( _In_ PCMyDevice Device, _Out_ CMyManualQueue **Queue ) /*++ Routine Description: This method creates and initializs an instance of the driver's device callback object. Arguments: FxDeviceInit - the settings for the device. Device - a location to store the referenced pointer to the device object. Return Value: Status --*/ { CMyManualQueue *queue; HRESULT hr = S_OK; // // Allocate a new instance of the device class. // queue = new CMyManualQueue(Device); if (NULL == queue) { hr = E_OUTOFMEMORY; } // // Initialize the instance. // if (SUCCEEDED(hr)) { hr = queue->Initialize(Device->GetFxDevice()); } if (SUCCEEDED(hr)) { queue->AddRef(); *Queue = queue; } if (NULL != queue) { queue->Release(); } return hr; } HRESULT CMyManualQueue::QueryInterface( _In_ REFIID InterfaceId, _Out_ PVOID *Object ) /*++ Routine Description: This method is called to get a pointer to one of the object's callback interfaces. Arguments: InterfaceId - the interface being requested Object - a location to store the interface pointer if successful Return Value: S_OK or E_NOINTERFACE --*/ { HRESULT hr; if (IsEqualIID(InterfaceId, __uuidof(IObjectCleanup))) { AddRef(); *Object = static_cast <IObjectCleanup *>( this ); hr = S_OK; } else { hr = CUnknown::QueryInterface(InterfaceId, Object); } return hr; } HRESULT CMyManualQueue::Initialize( _In_ IWDFDevice *FxDevice ) /*++ Routine Description: This method initializes the device callback object. Any operations which need to be performed before the caller can use the callback object, but which couldn't be done in the constructor becuase they could fail would be placed here. Arguments: FxDevice - the device which this Queue is for. Return Value: status. --*/ { IWDFIoQueue *fxQueue; HRESULT hr; // // Create the framework queue // IUnknown *unknown = QueryIUnknown(); hr = FxDevice->CreateIoQueue( unknown, FALSE, // bDefaultQueue WdfIoQueueDispatchManual, FALSE, // bPowerManaged TRUE, // bAllowZeroLengthRequests &fxQueue ); if (FAILED(hr)) { Trace( TRACE_LEVEL_ERROR, "%!FUNC!: Could not create manual I/O queue, %!hresult!" , hr ); } if (SUCCEEDED(hr)) { m_FxQueue = fxQueue; fxQueue->Release(); } unknown->Release(); if (SUCCEEDED(hr)) { // // create a threadpool timer // m_Timer = CreateThreadpoolTimer(_TimerCallback, this , NULL // use default threadpool ); if (m_Timer == NULL) { hr = E_OUTOFMEMORY; Trace(TRACE_LEVEL_ERROR, "Failed to allocate timer %!hresult!" , hr); } } return hr; } VOID CMyManualQueue::_TimerCallback( _Inout_ PTP_CALLBACK_INSTANCE Instance, _Inout_ PVOID Context, _Inout_ PTP_TIMER Timer ) { PCMyManualQueue This = (PCMyManualQueue) Context; HRESULT hr; IWDFIoRequest *fxRequest = NULL; IWDFMemory *memory = NULL; PVOID buffer; SIZE_T bufferSizeCb; ULONG readReportSizeCb = sizeof (HIDMINI_INPUT_REPORT); PHIDMINI_INPUT_REPORT readReport; UNREFERENCED_PARAMETER(Instance); UNREFERENCED_PARAMETER(Timer); Trace(TRACE_LEVEL_ERROR, "_TimerCallback CMyQueue 0x%p\n" , This); // // see if we have a request in manual queue // hr = This->GetQueue()->RetrieveNextRequest(&fxRequest); if (SUCCEEDED(hr)) { IWDFIoRequest2 *fxRequest2; Trace(TRACE_LEVEL_INFORMATION, "retrieved read request from manual queue CMyManualQueue 0x%p\n" , This); hr = fxRequest->QueryInterface(IID_PPV_ARGS(&fxRequest2)); if (FAILED(hr)){ Trace(TRACE_LEVEL_ERROR, "QueryInterface failed %!hresult!" , hr); fxRequest->Complete(hr); fxRequest->Release(); return ; } fxRequest2->Release(); Trace(TRACE_LEVEL_INFORMATION, "EffectiveIoType: %d\n" , fxRequest2->GetEffectiveIoType()); hr = fxRequest2->RetrieveOutputMemory(&memory); if (FAILED(hr)) { Trace(TRACE_LEVEL_ERROR, "RetrieveINputMemory failed %!hresult!" , hr); fxRequest2->Complete(hr); fxRequest2->Release(); return ; } buffer = memory->GetDataBuffer(&bufferSizeCb); memory->Release(); if (bufferSizeCb < readReportSizeCb) { hr = HRESULT_FROM_NT(STATUS_INVALID_BUFFER_SIZE); Trace(TRACE_LEVEL_ERROR, "%!FUNC! Insufficient read report buffer size %!hresult!" , hr); } else { // //Create input report // readReport = (PHIDMINI_INPUT_REPORT)buffer; readReport->ReportId = CONTROL_FEATURE_REPORT_ID; readReport->Data = This->m_Device->m_DeviceData; // // Report how many bytes were copied // fxRequest2->SetInformation(readReportSizeCb); hr = S_OK; } fxRequest2->Complete(hr); fxRequest2->Release(); } return ; } void CMyManualQueue::OnCleanup( IN IWDFObject* pWdfObject ) { UNREFERENCED_PARAMETER(pWdfObject); if (m_Timer != NULL) { // // Prevent new queues. If pftDueTime parameter is NULL, the timer object // will cease to queue new callbacks (but callbacks already queued will // still occur). // SetThreadpoolTimer( m_Timer, NULL, // PFILETIME pftDueTime, 0, // DWORD msPeriod, 0 // DWORD msWindowLength ); // // wait for timer callback. // WaitForThreadpoolTimerCallbacks(m_Timer, FALSE // donot cancel pending ); // // close timer callback // CloseThreadpoolTimer(m_Timer); m_Timer = NULL; } } |
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials