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 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
|
/*****************************************************************************
* *
* PrimeSense PSCommon Library *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of PSCommon. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include <XnUSB.h>
#include "../XnUSBInternal.h"
#include "XnUSBWin32.h"
#include <XnLog.h>
#include <setupapi.h>
#include <strsafe.h>
#include <process.h>
#include <dbt.h>
#include "devioctl.h"
#include "usb.h"
#include "XnList.h"
//---------------------------------------------------------------------------
// Types
//---------------------------------------------------------------------------
typedef struct XnUSBEventCallback
{
XnUSBDeviceCallbackFunctionPtr pFunc;
void* pCookie;
XnChar strVidPid[50];
} XnUSBEventCallback;
typedef xnl::List<XnUSBEventCallback*> XnUSBEventCallbackList;
//---------------------------------------------------------------------------
// Global Vars
//---------------------------------------------------------------------------
HANDLE g_xnUsbhModule = NULL;
HWND g_xnUsbhDevDetectWnd = NULL;
XN_THREAD_HANDLE g_xnUsbhPnThread = NULL;
XnBool g_bUsbDevDetectShoudRun = FALSE;
ATOM g_xnClass = 0;
XnUSBEventCallbackList g_connectivityEvent;
//---------------------------------------------------------------------------
// PNP Functions
//---------------------------------------------------------------------------
DWORD __stdcall DevDetectThread(LPVOID Arg)
{
char className[MAX_PATH];
sprintf_s(className, "xnUsbDeviceDetector%x", &g_xnUsbhModule);
g_xnUsbhDevDetectWnd = CreateWindow(className, "", WS_POPUP, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
SetEvent((HANDLE)Arg);
if(g_xnUsbhDevDetectWnd)
{
MSG msg;
while (g_bUsbDevDetectShoudRun)
{
if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
DispatchMessage(&msg);
}
else
{
xnOSSleep(50);
}
}
DestroyWindow(g_xnUsbhDevDetectWnd);
}
return 0;
}
LRESULT CALLBACK DevDetectWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_DEVICECHANGE:
{
PDEV_BROADCAST_HDR pBroadcastHdr = (PDEV_BROADCAST_HDR)lParam;
PDEV_BROADCAST_DEVICEINTERFACE pDevIF = (PDEV_BROADCAST_DEVICEINTERFACE)pBroadcastHdr;
if(pBroadcastHdr)
{
DWORD nEventType = (DWORD)wParam;
if (pBroadcastHdr->dbch_devicetype == DBT_DEVTYP_DEVICEINTERFACE)
{
_strlwr(pDevIF->dbcc_name);
XnUSBEventArgs args;
args.strDevicePath = pDevIF->dbcc_name;
switch (nEventType)
{
case DBT_DEVICEARRIVAL:
args.eventType = XN_USB_EVENT_DEVICE_CONNECT;
break;
case DBT_DEVICEREMOVECOMPLETE:
args.eventType = XN_USB_EVENT_DEVICE_DISCONNECT;
break;
default:
return 0;
}
for (XnUSBEventCallbackList::Iterator it = g_connectivityEvent.Begin(); it != g_connectivityEvent.End(); ++it)
{
XnUSBEventCallback* pCallback = *it;
if (strstr(args.strDevicePath, pCallback->strVidPid) != NULL)
{
pCallback->pFunc(&args, pCallback->pCookie);
}
}
}
}
}
break;
default:
return DefWindowProc(hwnd, msg, wParam, lParam);
}
return 0;
}
//---------------------------------------------------------------------------
// Helper Functions
//---------------------------------------------------------------------------
XnStatus xnUSBInitOvlp(XN_USB_EP_HANDLE pEPHandle)
{
XnStatus nRetVal = XN_STATUS_OK;
if (pEPHandle->hEPHandleOvlp != NULL)
{
CloseHandle(pEPHandle->hEPHandleOvlp);
}
if (pEPHandle->ovlpIO.hEvent != NULL)
{
xnOSCloseEvent(&pEPHandle->ovlpIO.hEvent);
}
// Open the overlapped pipe handle
pEPHandle->hEPHandleOvlp = CreateFile(pEPHandle->cpPipeName, GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE | FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED, NULL);
if (pEPHandle->hEPHandleOvlp == INVALID_HANDLE_VALUE)
{
return (XN_STATUS_ERROR);
}
// Init the overlapped variables
xnOSMemSet(&pEPHandle->ovlpIO, 0, sizeof(OVERLAPPED));
nRetVal = xnOSCreateEvent(&pEPHandle->ovlpIO.hEvent, FALSE);
if (nRetVal != XN_STATUS_OK)
{
return (XN_STATUS_ERROR);
}
return (XN_STATUS_OK);
}
HANDLE xnUSBOpenOneDevice(HDEVINFO hDevInfo, PSP_DEVICE_INTERFACE_DATA pDevInterfaceData, PSTR pDevName, const XnChar* cpWantedDevPath)
{
// Local variables
PSP_DEVICE_INTERFACE_DETAIL_DATA pDevInterfaceDetailData = NULL;
ULONG nPredictedLength = 0;
ULONG nRequiredLength = 0;
HANDLE hDevice = INVALID_HANDLE_VALUE;
// Probe how much memory is needed to read the device info
SetupDiGetDeviceInterfaceDetail(hDevInfo, pDevInterfaceData, NULL, 0, &nRequiredLength, NULL);
// Allocate memory for the device info
nPredictedLength = nRequiredLength;
pDevInterfaceDetailData = (PSP_DEVICE_INTERFACE_DETAIL_DATA)malloc(nPredictedLength);
if(pDevInterfaceDetailData == NULL)
{
// Not enough memory...
return INVALID_HANDLE_VALUE;
}
// Read the device info
pDevInterfaceDetailData->cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA);
if (!SetupDiGetDeviceInterfaceDetail(hDevInfo, pDevInterfaceData, pDevInterfaceDetailData, nPredictedLength, &nRequiredLength, NULL))
{
// Something bad has happened...
free(pDevInterfaceDetailData);
return INVALID_HANDLE_VALUE;
}
// Construct the device file name
StringCchCopy(pDevName, MAX_DEVICE_STR_LENGTH, pDevInterfaceDetailData->DevicePath);
// Check if it's the exact device the user wanted
if (cpWantedDevPath != NULL)
{
if (strcmp(pDevName, cpWantedDevPath) != 0)
{
free(pDevInterfaceDetailData);
return INVALID_HANDLE_VALUE;
}
}
// Open the device
hDevice = CreateFile(pDevInterfaceDetailData->DevicePath, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, NULL, NULL);
// Clean up memory
free(pDevInterfaceDetailData);
// Return the device (doesn't mean we have succeeded...)
return hDevice;
}
XnStatus xnUSBSetPipeProperty(XN_USB_EP_HANDLE pEPHandle, XnUInt32 nIndex, XnUInt32 nValue)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
PSUSBDRV_PIPE_PROPERTY PipeProp;
// Init the pipe property structure
PipeProp.nIndex = nIndex;
PipeProp.nValue = nValue;
// Set pipe property (regular handle)
bResult = DeviceIoControl(pEPHandle->hEPHandle, IOCTL_PSDRV_SET_PIPE_PROPERTY, &PipeProp, sizeof(PSUSBDRV_PIPE_PROPERTY), NULL, NULL, &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_SET_ENDPOINT_POLICY_FAILED);
}
// Set pipe property (ovlp handle)
bResult = DeviceIoControl(pEPHandle->hEPHandleOvlp, IOCTL_PSDRV_SET_PIPE_PROPERTY, &PipeProp, sizeof(PSUSBDRV_PIPE_PROPERTY), NULL, NULL, &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_SET_ENDPOINT_POLICY_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XnStatus xnUSBGetDriverVersion(XN_USB_DEV_HANDLE pDevHandle, PSUSBDRV_DRIVER_VERSION* pUsbDriverVersion)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
// Do the get driver version
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_GET_DRIVER_VERSION, NULL, 0, pUsbDriverVersion, sizeof(PSUSBDRV_DRIVER_VERSION), &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_GET_DRIVER_VERSION);
}
// All is good...
return (XN_STATUS_OK);
}
XnStatus xnUSBGetDeviceSpeedInternal(XN_USB_DEV_HANDLE pDevHandle, XnUSBDeviceSpeed* pUSBDeviceSpeed)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
// Do the device get speed
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_GET_DEVICE_SPEED, NULL, 0, pUSBDeviceSpeed, sizeof(XnUSBDeviceSpeed), &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_GET_SPEED_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnStatus xnUSBPlatformSpecificInit()
{
XnStatus nRetVal = XN_STATUS_OK;
// give a unique class name (there might be multiple instances of this code in multiple DLLs)
char className[MAX_PATH];
sprintf_s(className, "xnUsbDeviceDetector%x", &g_xnUsbhModule);
WNDCLASS wc;
wc.style = 0;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = (HINSTANCE)g_xnUsbhModule;
wc.hbrBackground = NULL;
wc.lpszMenuName = NULL;
wc.lpszClassName = className;
wc.lpfnWndProc = DevDetectWndProc;
wc.hIcon = NULL;
wc.hCursor = NULL;
g_xnClass = RegisterClass(&wc);
if (g_xnClass)
{
HANDLE hWaitEv = CreateEvent(NULL,FALSE,FALSE,NULL);
g_bUsbDevDetectShoudRun = TRUE;
nRetVal = xnOSCreateThread(DevDetectThread, hWaitEv, &g_xnUsbhPnThread);
XN_IS_STATUS_OK(nRetVal);
WaitForSingleObject(hWaitEv,INFINITE);
CloseHandle(hWaitEv);
}
else
{
return (XN_STATUS_USB_FAILED_TO_REGISTER_CALLBACK);
}
DEV_BROADCAST_DEVICEINTERFACE NotificationFilter;
ZeroMemory( &NotificationFilter, sizeof(NotificationFilter) );
NotificationFilter.dbcc_size = sizeof(DEV_BROADCAST_DEVICEINTERFACE);
NotificationFilter.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE;
NotificationFilter.dbcc_classguid = GUID_CLASS_PSDRV_USB;
RegisterDeviceNotification(g_xnUsbhDevDetectWnd, &NotificationFilter, DEVICE_NOTIFY_WINDOW_HANDLE);
return (XN_STATUS_OK);
}
XnStatus xnUSBPlatformSpecificShutdown()
{
g_bUsbDevDetectShoudRun = FALSE;
xnOSWaitAndTerminateThread(&g_xnUsbhPnThread, 5000);
UnregisterClass((LPCSTR)g_xnClass, (HINSTANCE)g_xnUsbhModule);
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBIsDevicePresent(XnUInt16 /*nVendorID*/, XnUInt16 /*nProductID*/, void* pExtraParam, XnBool* pbDevicePresent)
{
// Local variables
LPGUID pInterfaceGuid = NULL;
HDEVINFO deviceInfo;
SP_DEVICE_INTERFACE_DATA interfaceData;
BOOL bResult = FALSE;
// Validate the input/output pointers
XN_VALIDATE_INPUT_PTR(pExtraParam);
XN_VALIDATE_OUTPUT_PTR(pbDevicePresent);
// Init the driver GUID
pInterfaceGuid = (LPGUID)pExtraParam;
// Let's assume the device is not present for now
*pbDevicePresent = FALSE;
// See if the driver is installed
deviceInfo = SetupDiGetClassDevs(pInterfaceGuid, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
if (deviceInfo == INVALID_HANDLE_VALUE)
{
// No devices are present...
return (XN_STATUS_OK);
}
// See if any devices are attached
interfaceData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);
bResult = SetupDiEnumDeviceInterfaces(deviceInfo, NULL, pInterfaceGuid, 0, &interfaceData);
if (bResult == FALSE)
{
SetupDiDestroyDeviceInfoList(deviceInfo);
// No devices are present...
return (XN_STATUS_OK);
}
SetupDiDestroyDeviceInfoList(deviceInfo);
// Yay! We found at least one device
*pbDevicePresent = TRUE;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBEnumerateDevices(XnUInt16 nVendorID, XnUInt16 nProductID, const XnUSBConnectionString** pastrDevicePaths, XnUInt32* pnCount)
{
// support up to 30 devices
XnUSBConnectionString cpUSBID;
XnUSBConnectionString cpUSBPathCmp;
XnUSBConnectionString aNames[MAX_POTENTIAL_DEVICES];
HDEVINFO hDevInfo = NULL;
ULONG nDevices = 0;
XnUInt32 nFoundDevices = 0;
SP_DEVICE_INTERFACE_DATA devInterfaceData;
XnBool bReachedEnd = FALSE;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
LPCGUID pInterfaceGuid = &GUID_CLASS_PSDRV_USB;
// See if the driver is installed
hDevInfo = SetupDiGetClassDevs (pInterfaceGuid, NULL, NULL, (DIGCF_PRESENT | DIGCF_DEVICEINTERFACE));
if (hDevInfo == INVALID_HANDLE_VALUE)
{
// No devices are present...
return (XN_STATUS_USB_DRIVER_NOT_FOUND);
}
// Scan the hardware for any devices that are attached to our driver.
devInterfaceData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);
while (nDevices < MAX_POTENTIAL_DEVICES)
{
// Get information about the device
if (SetupDiEnumDeviceInterfaces(hDevInfo, 0, pInterfaceGuid, nDevices, &devInterfaceData))
{
PSP_DEVICE_INTERFACE_DETAIL_DATA pDevInterfaceDetailData = NULL;
ULONG nPredictedLength = 0;
ULONG nRequiredLength = 0;
// Probe how much memory is needed to read the device info
SetupDiGetDeviceInterfaceDetail(hDevInfo, &devInterfaceData, NULL, 0, &nRequiredLength, NULL);
// Allocate memory for the device info
nPredictedLength = nRequiredLength;
pDevInterfaceDetailData = (PSP_DEVICE_INTERFACE_DETAIL_DATA)malloc(nPredictedLength);
if(pDevInterfaceDetailData == NULL)
{
// Not enough memory...
return XN_STATUS_ALLOC_FAILED;
}
// Read the device info
pDevInterfaceDetailData->cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA);
if (!SetupDiGetDeviceInterfaceDetail(hDevInfo, &devInterfaceData, pDevInterfaceDetailData, nPredictedLength, &nRequiredLength, NULL))
{
// Something bad has happened...
free(pDevInterfaceDetailData);
return XN_STATUS_ERROR;
}
// Make sure we have the right VID/PID
cpUSBID[0] = 0;
sprintf_s (cpUSBID, "vid_%04x&pid_%04x", nVendorID, nProductID);
cpUSBPathCmp[0] = 0;
StringCchCopy(cpUSBPathCmp, MAX_DEVICE_STR_LENGTH, pDevInterfaceDetailData->DevicePath);
if (strstr(_strlwr(cpUSBPathCmp), cpUSBID) != 0)
{
StringCchCopy(aNames[nFoundDevices], MAX_DEVICE_STR_LENGTH, pDevInterfaceDetailData->DevicePath);
++nFoundDevices;
}
++nDevices;
}
else if (ERROR_NO_MORE_ITEMS == GetLastError())
{
// no more devices
bReachedEnd = TRUE;
break;
}
}
SetupDiDestroyDeviceInfoList(hDevInfo);
if (!bReachedEnd)
{
// we probably passed our limit
XN_LOG_ERROR_RETURN(XN_STATUS_ERROR, XN_MASK_USB, "Found more than %d devices! This is not supported.", MAX_POTENTIAL_DEVICES);
}
XnUSBConnectionString* pNames;
XN_VALIDATE_CALLOC(pNames, XnUSBConnectionString, nFoundDevices);
xnOSMemCopy(pNames, aNames, sizeof(XnUSBConnectionString) * nFoundDevices);
*pastrDevicePaths = pNames;
*pnCount = nFoundDevices;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API void xnUSBFreeDevicesList(const XnUSBConnectionString* astrDevicePaths)
{
xnOSFree(astrDevicePaths);
}
XnStatus xnUSBOpenDeviceImpl(const XnChar* strDevicePath, XN_USB_DEV_HANDLE* pDevHandlePtr)
{
// Local variables
XnStatus nRetVal = XN_STATUS_OK;
LPCGUID pInterfaceGuid = NULL;
XN_USB_DEV_HANDLE pDevHandle = NULL;
HDEVINFO hDevInfo = NULL;
SP_DEVICE_INTERFACE_DATA devInterfaceData;
HANDLE hSelectedDevice = INVALID_HANDLE_VALUE;
PSUSBDRV_DRIVER_VERSION UsbDriverVersion;
PSUSBDRV_INTERFACE_PROPERTY pInterfaceProp;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pDevHandlePtr);
// Allocate a new xnUSB Device handle
XN_VALIDATE_ALIGNED_CALLOC(*pDevHandlePtr, XnUSBDeviceHandle, 1, XN_DEFAULT_MEM_ALIGN);
pDevHandle = *pDevHandlePtr;
// Get Device Path
pInterfaceGuid = &GUID_CLASS_PSDRV_USB;
// See if the driver is installed
hDevInfo = SetupDiGetClassDevs (pInterfaceGuid, NULL, NULL, (DIGCF_PRESENT | DIGCF_DEVICEINTERFACE));
if (hDevInfo == INVALID_HANDLE_VALUE)
{
// No devices are present...
XN_ALIGNED_FREE_AND_NULL(pDevHandle);
return (XN_STATUS_USB_DRIVER_NOT_FOUND);
}
// Scan the hardware for any devices that are attached to our driver. Stop only after we have successfully opened a device.
devInterfaceData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);
bool bDone = FALSE;
ULONG nIdx = 0;
// Scan all the devices that are attached to the driver. Stop when one of them open successfully.
while (!bDone)
{
// Get information about the device
if (SetupDiEnumDeviceInterfaces (hDevInfo, 0, pInterfaceGuid, nIdx, &devInterfaceData))
{
// Try to open this device
hSelectedDevice = xnUSBOpenOneDevice(hDevInfo, &devInterfaceData, pDevHandle->cpDeviceName, strDevicePath);
if (hSelectedDevice != INVALID_HANDLE_VALUE)
{
// Success! We have a valid device handle.
bDone = TRUE;
break;
}
}
else
{
// Did we reach the end?
if (ERROR_NO_MORE_ITEMS == GetLastError())
{
// Yup... and we didn't find any devices...
bDone = TRUE;
break;
}
}
++nIdx;
}
// Cleanup memory
SetupDiDestroyDeviceInfoList (hDevInfo);
// Do we have a valid device?
if (hSelectedDevice == INVALID_HANDLE_VALUE)
{
// Nope...
XN_ALIGNED_FREE_AND_NULL(pDevHandle);
return (XN_STATUS_USB_DEVICE_NOT_FOUND);
}
// Save the device handle
pDevHandle->hUSBDevHandle = hSelectedDevice;
// Get the device speed
nRetVal = xnUSBGetDeviceSpeedInternal(pDevHandle, &pDevHandle->nDevSpeed);
if (nRetVal != XN_STATUS_OK)
{
XN_ALIGNED_FREE_AND_NULL(pDevHandle);
return (nRetVal);
}
// Get the driver version
nRetVal = xnUSBGetDriverVersion(pDevHandle, &UsbDriverVersion);
if (nRetVal != XN_STATUS_OK)
{
XN_ALIGNED_FREE_AND_NULL(pDevHandle);
return (nRetVal);
}
xnLogVerbose(XN_MASK_USB, "USB Driver Version is: %d.%d.%d.%d", UsbDriverVersion.nMajor, UsbDriverVersion.nMinor, UsbDriverVersion.nMaintenance, UsbDriverVersion.nBuild);
// Mark the device handle as valid
pDevHandle->bValid = TRUE;
// Read the current alt-if settings
nRetVal = xnUSBGetInterface(pDevHandle, &pInterfaceProp.nIF, &pInterfaceProp.nAltIF);
if (nRetVal != XN_STATUS_OK)
{
XN_ALIGNED_FREE_AND_NULL(pDevHandle);
return (nRetVal);
}
pDevHandle->nAltInterface = pInterfaceProp.nAltIF;
xnLogVerbose(XN_MASK_USB, "USB Driver Current Alt Setting is: %d", pDevHandle->nAltInterface);
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBOpenDevice(XnUInt16 /*nVendorID*/, XnUInt16 /*nProductID*/, void* /*pExtraParam*/, void* pExtraParam2, XN_USB_DEV_HANDLE* pDevHandlePtr)
{
return xnUSBOpenDeviceImpl((const XnChar*)pExtraParam2, pDevHandlePtr);
}
XN_C_API XnStatus xnUSBOpenDeviceByPath(const XnUSBConnectionString strDevicePath, XN_USB_DEV_HANDLE* pDevHandlePtr)
{
return xnUSBOpenDeviceImpl(strDevicePath, pDevHandlePtr);
}
XN_C_API XnStatus xnUSBCloseDevice(XN_USB_DEV_HANDLE pDevHandle)
{
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Close the device handle
CloseHandle(pDevHandle->hUSBDevHandle);
// Free the device handle
xnOSFreeAligned(pDevHandle);
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBGetDeviceSpeed(XN_USB_DEV_HANDLE pDevHandle, XnUSBDeviceSpeed* pDevSpeed)
{
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pDevSpeed);
// Update the data...
*pDevSpeed = pDevHandle->nDevSpeed;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBSetConfig(XN_USB_DEV_HANDLE /*pDevHandle*/, XnUInt8 /*nConfig*/)
{
return (XN_STATUS_OS_UNSUPPORTED_FUNCTION);
}
XN_C_API XnStatus xnUSBGetConfig(XN_USB_DEV_HANDLE /*pDevHandle*/, XnUInt8* /*pnConfig*/)
{
return (XN_STATUS_OS_UNSUPPORTED_FUNCTION);
}
XN_C_API XnStatus xnUSBSetInterface(XN_USB_DEV_HANDLE pDevHandle, XnUInt8 /*nInterface*/, XnUInt8 nAltInterface)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
PSUSBDRV_INTERFACE_PROPERTY InterfaceProp;
// Init the pipe property structure
InterfaceProp.nIF = 0;
InterfaceProp.nAltIF = nAltInterface;
// Do the set interface
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_SET_INTERFACE, &InterfaceProp, sizeof(PSUSBDRV_INTERFACE_PROPERTY), NULL, NULL, &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_SET_INTERFACE_FAILED);
}
else
{
xnLogVerbose(XN_MASK_USB, "USB altIF was set to %d", nAltInterface);
}
pDevHandle->nAltInterface = nAltInterface;
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBGetInterface(XN_USB_DEV_HANDLE pDevHandle, XnUInt8* pnInterface, XnUInt8* pnAltInterface)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
PSUSBDRV_INTERFACE_PROPERTY InterfaceProp;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pnInterface);
XN_VALIDATE_OUTPUT_PTR(pnAltInterface);
// Do the get interface
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_GET_INTERFACE, NULL, 0, &InterfaceProp, sizeof(PSUSBDRV_INTERFACE_PROPERTY), &nRetBytes, NULL);
if (bResult == FALSE)
{
return (XN_STATUS_USB_GET_INTERFACE_FAILED);
}
// Update the data...
*pnInterface = InterfaceProp.nIF;
*pnAltInterface = InterfaceProp.nAltIF;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBOpenEndPoint(XN_USB_DEV_HANDLE pDevHandle, XnUInt16 nEndPointID, XnUSBEndPointType nEPType, XnUSBDirectionType nDirType, XN_USB_EP_HANDLE* pEPHandlePtr)
{
// Local variables
XnBool bResult = TRUE;
XnStatus nRetVal = XN_STATUS_OK;
XnInt32 nRetBytes = 0;
XnChar pConfigDescBuf[MAX_CONFIG_DESC_SIZE];
XnChar* pBuf = NULL;
PUSB_CONFIGURATION_DESCRIPTOR pUSBConfigDesc = NULL;
PUSB_INTERFACE_DESCRIPTOR pUSBInterfaceDesc = NULL;
PUSB_ENDPOINT_DESCRIPTOR pUSBEndPointDesc = NULL;
XN_USB_EP_HANDLE pEPHandle = NULL;
XnChar cpPipeID[3];
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pEPHandlePtr);
// Allocate a new xnUSB EP handle
XN_VALIDATE_ALIGNED_CALLOC(*pEPHandlePtr, xnUSBEPHandle, 1, XN_DEFAULT_MEM_ALIGN);
pEPHandle = *pEPHandlePtr;
// Read the config descriptor
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_GET_CONFIG_DESCRIPTOR, pConfigDescBuf, sizeof(pConfigDescBuf), pConfigDescBuf, sizeof(pConfigDescBuf), (PULONG)&nRetBytes, NULL);
if (bResult)
{
XnUInt32 nIFIdx = 0;
UCHAR nEPIdx = 0;
XnUInt32 nUBBEPType = 0;
XnUInt32 nCurrIF = 0;
pBuf = pConfigDescBuf;
pUSBConfigDesc = (PUSB_CONFIGURATION_DESCRIPTOR)pBuf;
pBuf += pUSBConfigDesc->bLength;
// Scan all the interfaces
do {
pUSBInterfaceDesc = (PUSB_INTERFACE_DESCRIPTOR)pBuf;
pBuf += pUSBInterfaceDesc->bLength;
// Scan all the endpoints
for (nEPIdx = 0; nEPIdx < pUSBInterfaceDesc->bNumEndpoints; nEPIdx++)
{
pUSBEndPointDesc = (PUSB_ENDPOINT_DESCRIPTOR)pBuf;
// Is this the EP we're looking for?
if ((pUSBEndPointDesc->bEndpointAddress == nEndPointID) && (pDevHandle->nAltInterface == nCurrIF))
{
// Get the EP type
nUBBEPType = pUSBEndPointDesc->bmAttributes & USB_ENDPOINT_TYPE_MASK;
// Verify that the EP type matches the requested EP
if (nEPType == XN_USB_EP_BULK)
{
if (nUBBEPType != USB_ENDPOINT_TYPE_BULK)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_WRONG_ENDPOINT_TYPE);
}
}
else if (nEPType == XN_USB_EP_INTERRUPT)
{
if (nUBBEPType != USB_ENDPOINT_TYPE_INTERRUPT)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_WRONG_ENDPOINT_TYPE);
}
}
else if (nEPType == XN_USB_EP_ISOCHRONOUS)
{
if (nUBBEPType != USB_ENDPOINT_TYPE_ISOCHRONOUS)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_WRONG_ENDPOINT_TYPE);
}
}
else
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_UNKNOWN_ENDPOINT_TYPE);
}
// Verify that the EP direction matches the requested direction
if (nDirType == XN_USB_DIRECTION_IN)
{
if (USB_ENDPOINT_DIRECTION_IN(pUSBEndPointDesc->bEndpointAddress) == FALSE)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION);
}
}
else if (nDirType == XN_USB_DIRECTION_OUT)
{
if (USB_ENDPOINT_DIRECTION_OUT(pUSBEndPointDesc->bEndpointAddress) == FALSE)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION);
}
}
else
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_UNKNOWN_ENDPOINT_DIRECTION);
}
// Construct the pipe file name
pEPHandle->cpPipeName[0] = 0;
cpPipeID[0] = '0';
cpPipeID[1] = '0' + nEPIdx;
cpPipeID[2] = 0;
StringCchCopy(pEPHandle->cpPipeName, MAX_DEVICE_STR_LENGTH, pDevHandle->cpDeviceName);
StringCchCat(pEPHandle->cpPipeName, MAX_DEVICE_STR_LENGTH, PSDRV_PIPE_PREFIX);
StringCchCat(pEPHandle->cpPipeName, MAX_DEVICE_STR_LENGTH, cpPipeID);
// Open the regular pipe handle
pEPHandle->hEPHandle = CreateFile(pEPHandle->cpPipeName, GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE | FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);
if (pEPHandle->hEPHandle == INVALID_HANDLE_VALUE)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_OPEN_ENDPOINT_FAILED);
}
// Init the overlapped I/O structs
nRetVal = xnUSBInitOvlp(pEPHandle);
if (nRetVal != XN_STATUS_OK)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_OPEN_ENDPOINT_FAILED);
}
// Init the ThreadData variables
xnOSMemSet(&pEPHandle->ThreadData, 0, sizeof(xnUSBReadThreadData));
pEPHandle->ThreadData.bInUse = FALSE;
// Init the default endpoint properties
pEPHandle->nTimeOut = XN_USB_DEFAULT_EP_TIMEOUT;
pEPHandle->nEPType = nEPType;
pEPHandle->nEPDir = nDirType;
pEPHandle->nEndPointID = nEndPointID;
// Set the default endpoint timeout
nRetVal = xnUSBSetPipeProperty(pEPHandle, PSUSBDRV_PIPE_PROPERTY_TIMEOUT, XN_USB_DEFAULT_EP_TIMEOUT);
if (nRetVal != XN_STATUS_OK)
{
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (nRetVal);
}
if (nUBBEPType == USB_ENDPOINT_TYPE_ISOCHRONOUS)
{
// bits 11 and 12 mark the number of additional transactions, bits 0-10 mark the size
XnUInt32 nAdditionalTransactions = pUSBEndPointDesc->wMaxPacketSize >> 11;
XnUInt32 nPacketSize = pUSBEndPointDesc->wMaxPacketSize & 0x7FF;
pEPHandle->nMaxPacketSize = (nAdditionalTransactions + 1) * (nPacketSize);
}
else
{
pEPHandle->nMaxPacketSize = pUSBEndPointDesc->wMaxPacketSize;
}
// Mark the endpoint as valid
pEPHandle->bValid = TRUE;
// The end... (Happy)
return (XN_STATUS_OK);
}
pBuf += pUSBEndPointDesc->bLength;
}
nCurrIF++;
nIFIdx = (ULONG)(pBuf - pConfigDescBuf);
} while (nIFIdx < pUSBConfigDesc->wTotalLength);
}
// The end... (Sad)
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
return (XN_STATUS_USB_ENDPOINT_NOT_FOUND);
}
XN_C_API XnStatus xnUSBCloseEndPoint(XN_USB_EP_HANDLE pEPHandle)
{
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pEPHandle);
// Close the EP handles
CloseHandle(pEPHandle->hEPHandle);
CloseHandle(pEPHandle->hEPHandleOvlp);
// Close the overlapped events
xnOSCloseEvent(&pEPHandle->ovlpIO.hEvent);
// Free the EP handle
XN_ALIGNED_FREE_AND_NULL(pEPHandle);
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBGetEndPointMaxPacketSize(XN_USB_EP_HANDLE pEPHandle, XnUInt32* pnMaxPacketSize)
{
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_INPUT_PTR(pEPHandle);
XN_VALIDATE_OUTPUT_PTR(pnMaxPacketSize);
*pnMaxPacketSize = pEPHandle->nMaxPacketSize;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBAbortEndPoint(XN_USB_EP_HANDLE pEPHandle)
{
// Local variables
BOOL bResult = FALSE;
ULONG nRetBytes = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Abort the pipe
bResult = DeviceIoControl(pEPHandle->hEPHandle, IOCTL_PSDRV_ABORT_PIPE, NULL, NULL, NULL, NULL, &nRetBytes, NULL);
if (bResult != TRUE)
{
return (XN_STATUS_USB_ABORT_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBFlushEndPoint(XN_USB_EP_HANDLE /*pEPHandle*/)
{
return (XN_STATUS_OS_UNSUPPORTED_FUNCTION);
}
XN_C_API XnStatus xnUSBResetEndPoint(XN_USB_EP_HANDLE pEPHandle)
{
// Local variables
BOOL bResult = FALSE;
ULONG nRetBytes = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Reset the pipe
bResult = DeviceIoControl(pEPHandle->hEPHandle, IOCTL_PSDRV_RESET_PIPE, NULL, NULL, NULL, NULL, &nRetBytes, NULL);
if (bResult != TRUE)
{
return (XN_STATUS_USB_RESET_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBSendControl(XN_USB_DEV_HANDLE pDevHandle, XnUSBControlType nType, XnUInt8 nRequest, XnUInt16 nValue, XnUInt16 nIndex, XnUChar* pBuffer, XnUInt32 nBufferSize, XnUInt32 nTimeOut)
{
// Local variables
XnBool bResult = FALSE;
ULONG nRetBytes = 0;
PSUSBDRV_CONTROL_TRANSFER ControlTransfer;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Init the control transfer structure
ControlTransfer.cDirection = RequestHostToDevice;
ControlTransfer.cRequestType = (UCHAR)nType; // cast is safe. enum was defined exactly according to standard
ControlTransfer.cRequest = nRequest;
ControlTransfer.nValue = nValue;
ControlTransfer.nIndex = nIndex;
ControlTransfer.nTimeout = nTimeOut;
// Do the control transfer
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_CONTROL_TRANSFER, &ControlTransfer, sizeof(ControlTransfer), pBuffer, nBufferSize, &nRetBytes, NULL);
if (bResult != TRUE)
{
// Something failed... let's get the last error
DWORD nLastErr = GetLastError();
// Was it a timeout?
if (nLastErr == ERROR_SEM_TIMEOUT)
{
return (XN_STATUS_USB_TRANSFER_TIMEOUT);
}
// Nope, return a generic error
return (XN_STATUS_USB_CONTROL_SEND_FAILED);
}
// Make sure we have sent all the bytes in the buffer
if (nRetBytes != nBufferSize)
{
return (XN_STATUS_USB_GOT_UNEXPECTED_BYTES);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBReceiveControl(XN_USB_DEV_HANDLE pDevHandle, XnUSBControlType nType, XnUInt8 nRequest, XnUInt16 nValue, XnUInt16 nIndex, XnUChar* pBuffer, XnUInt32 nBufferSize, XnUInt32* pnBytesReceived, XnUInt32 nTimeOut)
{
// Local variables
XnBool bResult = FALSE;
PSUSBDRV_CONTROL_TRANSFER ControlTransfer;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PDEV_HANDLE(pDevHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pBuffer);
XN_VALIDATE_OUTPUT_PTR(pnBytesReceived);
// Make sure we are not sending an empty buffer
if (nBufferSize == 0)
{
return (XN_STATUS_USB_BUFFER_TOO_SMALL);
}
// Init the control transfer structure
ControlTransfer.cDirection = RequestDeviceToHost;
ControlTransfer.cRequestType = (UCHAR)nType; // cast is safe. enum was defined exactly according to standard
ControlTransfer.cRequest = nRequest;
ControlTransfer.nValue = nValue;
ControlTransfer.nIndex = nIndex;
ControlTransfer.nTimeout = nTimeOut;
// Do the control transfer
bResult = DeviceIoControl(pDevHandle->hUSBDevHandle, IOCTL_PSDRV_CONTROL_TRANSFER, &ControlTransfer, sizeof(ControlTransfer), pBuffer, nBufferSize, (DWORD*)pnBytesReceived, NULL);
if (bResult != TRUE)
{
// Something failed... let's get the last error
DWORD nLastErr = GetLastError();
// Was it a timeout?
if (nLastErr == ERROR_SEM_TIMEOUT)
{
return (XN_STATUS_USB_TRANSFER_TIMEOUT);
}
// Nope, log and return a generic error
xnLogError(XN_MASK_USB, "Got error receiving data: %u", nLastErr);
return (XN_STATUS_USB_CONTROL_RECV_FAILED);
}
// Did we receive an empty buffer?
if (*pnBytesReceived == 0)
{
return (XN_STATUS_USB_NOT_ENOUGH_DATA);
} // Make sure we didn't get more then we asked for
else if (*pnBytesReceived > nBufferSize)
{
return (XN_STATUS_USB_TOO_MUCH_DATA);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBReadEndPoint(XN_USB_EP_HANDLE pEPHandle, XnUChar* pBuffer, XnUInt32 nBufferSize, XnUInt32* pnBytesReceived, XnUInt32 nTimeOut)
{
// Local variables
BOOL bResult = FALSE;
XnStatus nRetVal = XN_STATUS_OK;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pBuffer);
XN_VALIDATE_OUTPUT_PTR(pnBytesReceived);
// Zero the amount of the received bytes
*pnBytesReceived = 0;
// Is this an IN endpoint? It must be if we're going to read from it!
if (pEPHandle->nEPDir != XN_USB_DIRECTION_IN)
{
return (XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION);
}
// Make sure the receive buffer is big enough to hold some data
if (nBufferSize == 0)
{
return (XN_STATUS_USB_BUFFER_TOO_SMALL);
}
// Update the EP timeout
if (nTimeOut != pEPHandle->nTimeOut)
{
nRetVal = xnUSBSetPipeProperty(pEPHandle, PSUSBDRV_PIPE_PROPERTY_TIMEOUT, nTimeOut);
XN_IS_STATUS_OK(nRetVal);
pEPHandle->nTimeOut = nTimeOut;
}
// Reset the endpoint
if (pEPHandle->nEPType == XN_USB_EP_ISOCHRONOUS)
{
nRetVal = xnUSBResetEndPoint(pEPHandle);
XN_IS_STATUS_OK(nRetVal);
}
// Read from the EP
bResult = ReadFile(pEPHandle->hEPHandle, pBuffer, nBufferSize, (PULONG)pnBytesReceived, NULL);
if (bResult == FALSE)
{
// Something failed... let's get the last error
DWORD nLastErr = GetLastError();
// Was it a timeout?
if (nLastErr == ERROR_SEM_TIMEOUT)
{
return (XN_STATUS_USB_TRANSFER_TIMEOUT);
}
// Nope, return a generic error
return (XN_STATUS_USB_ENDPOINT_READ_FAILED);
}
// Did we get any data at all?
if (*pnBytesReceived == 0)
{
return (XN_STATUS_USB_NOT_ENOUGH_DATA);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBWriteEndPoint(XN_USB_EP_HANDLE pEPHandle, XnUChar* pBuffer, XnUInt32 nBufferSize, XnUInt32 nTimeOut)
{
// Local variables
BOOL bResult = FALSE;
XnStatus nRetVal = XN_STATUS_OK;
ULONG nBytesSent = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_INPUT_PTR(pBuffer);
// Is this an OUT endpoint? It must be if we're going to write into it!
if (pEPHandle->nEPDir != XN_USB_DIRECTION_OUT)
{
return (XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION);
}
// Make sure we are not sending an empty buffer
if (nBufferSize == 0)
{
return (XN_STATUS_USB_BUFFER_TOO_SMALL);
}
// Update the EP timeout
if (nTimeOut != pEPHandle->nTimeOut)
{
nRetVal = xnUSBSetPipeProperty(pEPHandle, PSUSBDRV_PIPE_PROPERTY_TIMEOUT, nTimeOut);
XN_IS_STATUS_OK(nRetVal);
pEPHandle->nTimeOut = nTimeOut;
}
// Reset the endpoint
if (pEPHandle->nEPType == XN_USB_EP_ISOCHRONOUS)
{
nRetVal = xnUSBResetEndPoint(pEPHandle);
XN_IS_STATUS_OK(nRetVal);
}
// Write into the EP
bResult = WriteFile(pEPHandle->hEPHandle, pBuffer, nBufferSize, (PULONG) &nBytesSent, NULL);
if (bResult == FALSE)
{
// Something failed... let's get the last error
DWORD nLastErr = GetLastError();
// Was it a timeout?
if (nLastErr == ERROR_SEM_TIMEOUT)
{
return (XN_STATUS_USB_TRANSFER_TIMEOUT);
}
// Nope, return a generic error
return (XN_STATUS_USB_ENDPOINT_WRITE_FAILED);
}
// Make sure we didn't miss any bytes from the buffer
if (nBytesSent != nBufferSize)
{
return (XN_STATUS_USB_GOT_UNEXPECTED_BYTES);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBQueueReadEndPoint(XN_USB_EP_HANDLE pEPHandle, XnUChar* pBuffer, XnUInt32 nBufferSize, XnUInt32 nTimeOut)
{
// Local variables
BOOL bResult = FALSE;
XnStatus nRetVal = XN_STATUS_OK;
ULONG nBytesRcvd = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pBuffer);
// Is this an IN endpoint? It must be if we're going to read from it!
if (pEPHandle->nEPDir != XN_USB_DIRECTION_IN)
{
return (XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION);
}
// Make sure the receive buffer is big enough to hold some data
if (nBufferSize == 0)
{
return (XN_STATUS_USB_BUFFER_TOO_SMALL);
}
// Update the EP timeout
if (nTimeOut != pEPHandle->nTimeOut)
{
nRetVal = xnUSBSetPipeProperty(pEPHandle, PSUSBDRV_PIPE_PROPERTY_TIMEOUT, nTimeOut);
XN_IS_STATUS_OK(nRetVal);
pEPHandle->nTimeOut = nTimeOut;
}
// Reset the endpoint
if (pEPHandle->nEPType == XN_USB_EP_ISOCHRONOUS)
{
nRetVal = xnUSBResetEndPoint(pEPHandle);
XN_IS_STATUS_OK(nRetVal);
}
// Queue the read via overlapped I/O
bResult = ReadFile(pEPHandle->hEPHandleOvlp, pBuffer, nBufferSize, (PULONG)&nBytesRcvd, &pEPHandle->ovlpIO);
if (bResult == FALSE)
{
// If everything is OK, we're expecting to get an ERROR_IO_PENDING error
DWORD nLastErr = GetLastError();
if (nLastErr != ERROR_IO_PENDING)
{
// That's not what we expected, so return a generic error
return (XN_STATUS_USB_ENDPOINT_READ_FAILED);
}
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBFinishReadEndPoint(XN_USB_EP_HANDLE pEPHandle, XnUInt32* pnBytesReceived, XnUInt32 nTimeOut)
{
// Local variables
XnBool bRetVal = TRUE;
DWORD nWaitRetVal = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_OUTPUT_PTR(pnBytesReceived);
// Did the read command finish yet? if not, wait for it to complete or to timeout
nWaitRetVal = WaitForSingleObject(pEPHandle->ovlpIO.hEvent, nTimeOut);
if (nWaitRetVal != 0)
{
// Did it timeout?
if (nWaitRetVal == WAIT_TIMEOUT)
{
return (XN_STATUS_USB_TRANSFER_TIMEOUT);
}
else // Nope, so return a generic error
{
return (XN_STATUS_USB_OVERLAPIO_FAILED);
}
}
// Get the operation status and the amount of received bytes
bRetVal = GetOverlappedResult(pEPHandle->hEPHandleOvlp, &pEPHandle->ovlpIO, (DWORD*)pnBytesReceived, FALSE);
XN_IS_BOOL_OK_RET(bRetVal, XN_STATUS_USB_OVERLAPIO_FAILED);
// All is good...
return (XN_STATUS_OK);
}
XN_THREAD_PROC xnUSBReadThreadMain(XN_THREAD_PARAM pThreadParam)
{
// Local variables
xnUSBReadThreadData* pThreadData = (xnUSBReadThreadData*)pThreadParam;
XnUInt32 nBufIdx = 0;
XnBool bResult = FALSE;
ULONG nBytesRead = 0;
HANDLE hCompletionPort = NULL;
HANDLE hEPOvlp = NULL;
OVERLAPPED* pOvlpIO = NULL;
xnUSBBuffersInfo* pBuffersInfo = NULL;
OVERLAPPED* pFinishedOV = NULL;
ULONG_PTR nFinishedEP = 0;
XnUInt32 nTimeOut = 0;
XnUInt32 nBufferSize = 0;
ULONG_PTR nOVIdx = 0;
XnUSBReadCallbackFunctionPtr pCallbackFunction = NULL;
PVOID pCallbackData = NULL;
// Verify that we have a valid ThreadData pointer
if (pThreadData == NULL)
{
return (XN_STATUS_ERROR);
}
// Dereference common variables
hEPOvlp = pThreadData->pEPHandle->hEPHandleOvlp;
pOvlpIO = pThreadData->pOvlpIO;
pBuffersInfo = pThreadData->pBuffersInfo;
nTimeOut = pThreadData->nTimeOut;
nBufferSize = pThreadData->nBufferSize;
pCallbackFunction = pThreadData->pCallbackFunction;
pCallbackData = pThreadData->pCallbackData;
// Raise the thread priority to real time. We don't want to miss any USB data and we don't want anyone to interrupt us.
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
// Create the overlapped I/O completion port
hCompletionPort = CreateIoCompletionPort(hEPOvlp, NULL, pThreadData->pEPHandle->nEndPointID, 0);
if (hCompletionPort == NULL)
{
//printf ("xnUSBReadThreadMain: CreateIoCompletionPort error!\n");
return (XN_STATUS_ERROR);
}
// Queue the initial overlapped reads
for (nBufIdx=0; nBufIdx<pThreadData->nNumBuffers; nBufIdx++)
{
bResult = ReadFile(hEPOvlp, pBuffersInfo[nBufIdx].pBuffer, nBufferSize, (PULONG)&nBytesRead, &pOvlpIO[nBufIdx]);
/*
if (bResult == FALSE)
{
nLastErr = GetLastError();
if (nLastErr != ERROR_IO_PENDING)
{
printf ("xnUSBReadThreadMain: pre-loop read error! (%d)\n", nLastErr);
//return (XN_STATUS_ERROR);
}
}
*/
}
// Loop forever... (unless signaled to die)
for (;;)
{
// Time to die?
if(pThreadData->bKillReadThread)
{
if (hCompletionPort != NULL)
{
CloseHandle(hCompletionPort);
}
return (XN_STATUS_OK);
}
// Wait for any of our requests to complete
bResult = GetQueuedCompletionStatus(hCompletionPort, &nBytesRead, &nFinishedEP, &pFinishedOV, nTimeOut);
if (bResult == FALSE)
{
// printf ("xnUSBReadThreadMain: GetQueuedCompletionStatus error! (%d)\n", GetLastError());
// if the error is SEM_TIMEOUT, the overlapped I/O operation has ended with a timeout,
// and we still need to requeue it. Other errors does not return the Finished OV, and so
// we should just try again.
if (GetLastError() != ERROR_SEM_TIMEOUT)
continue;
//return (XN_STATUS_ERROR);
}
// Calculate which request came back
nOVIdx = pFinishedOV - pOvlpIO;
// printf("GetQueuedCompletionStatus: Buffer:%d Bytes:%d EP:0x%x Status:%d\n", nOVIdx, nBytesRead, nFinishedEP, bResult);
// If the request was completed successfully, call the callback function
if (bResult == TRUE)
{
pCallbackFunction(pBuffersInfo[nOVIdx].pBuffer, nBytesRead, pCallbackData);
}
// Re-queue the request
bResult = ReadFile(hEPOvlp, pBuffersInfo[nOVIdx].pBuffer, nBufferSize, NULL, pFinishedOV);
/*
if (bResult == FALSE)
{
nLastErr = GetLastError();
if (nLastErr != ERROR_IO_PENDING)
{
printf ("xnUSBReadThreadMain: loop read error! (%d)\n", nLastErr);
//return (XN_STATUS_ERROR);
}
}
*/
}
}
XN_C_API XnStatus xnUSBInitReadThread(XN_USB_EP_HANDLE pEPHandle, XnUInt32 nBufferSize, XnUInt32 nNumBuffers, XnUInt32 nTimeOut, XnUSBReadCallbackFunctionPtr pCallbackFunction, PVOID pCallbackData)
{
// Local variables
XnStatus nRetVal = XN_STATUS_OK;
xnUSBReadThreadData* pThreadData = NULL;
XnUInt32 nBufIdx = 0;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Validate the input/output pointers
XN_VALIDATE_INPUT_PTR(pCallbackFunction);
// Dereference the ThreadData
pThreadData = &pEPHandle->ThreadData;
// Does this EP already have a read thread?
if (pThreadData->bInUse == TRUE)
{
return (XN_STATUS_USB_READTHREAD_ALREADY_INIT);
}
// Wipe the ThreadData memory
xnOSMemSet(pThreadData, 0, sizeof(xnUSBReadThreadData));
// Init the ThreadData structure
pThreadData->pEPHandle = pEPHandle;
pThreadData->nBufferSize = nBufferSize;
pThreadData->nNumBuffers = nNumBuffers;
pThreadData->nTimeOut = nTimeOut;
pThreadData->pCallbackFunction = pCallbackFunction;
pThreadData->pCallbackData = pCallbackData;
pThreadData->bKillReadThread = FALSE;
// Update the EP timeout
if (nTimeOut != pEPHandle->nTimeOut)
{
nRetVal = xnUSBSetPipeProperty(pEPHandle, PSUSBDRV_PIPE_PROPERTY_TIMEOUT, nTimeOut);
XN_IS_STATUS_OK(nRetVal);
pEPHandle->nTimeOut = nTimeOut;
}
// Allocate the read buffers and create the overlapped I/O events
XN_VALIDATE_ALIGNED_CALLOC(pThreadData->pBuffersInfo, xnUSBBuffersInfo, nNumBuffers, XN_DEFAULT_MEM_ALIGN);
XN_VALIDATE_ALIGNED_CALLOC(pThreadData->pOvlpIO, OVERLAPPED, nNumBuffers, XN_DEFAULT_MEM_ALIGN);
for (nBufIdx=0; nBufIdx<nNumBuffers; nBufIdx++)
{
nRetVal = xnOSCreateEvent(&pThreadData->pOvlpIO[nBufIdx].hEvent, FALSE);
XN_IS_STATUS_OK(nRetVal); // Add cleanup memory!
XN_VALIDATE_ALIGNED_CALLOC(pThreadData->pBuffersInfo[nBufIdx].pBuffer, XnUChar, nBufferSize, XN_DEFAULT_MEM_ALIGN); // Add cleanup memory!
}
// Create the read thread
nRetVal = xnOSCreateThread(xnUSBReadThreadMain, &pEPHandle->ThreadData, &pThreadData->hReadThread);
XN_IS_STATUS_OK(nRetVal); // Add cleanup memory!
// Mark that this EP has a valid read thread
pThreadData->bInUse = TRUE;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnUSBShutdownReadThread(XN_USB_EP_HANDLE pEPHandle)
{
// Local variables
XnStatus nRetVal = XN_STATUS_OK;
xnUSBReadThreadData* pThreadData = NULL;
// Validate xnUSB
XN_VALIDATE_USB_INIT();
XN_VALIDATE_USB_PEP_HANDLE(pEPHandle);
// Dereference the ThreadData
pThreadData = &pEPHandle->ThreadData;
// Make sure that this EP has a read thread active
if (pThreadData->bInUse == FALSE)
{
return (XN_STATUS_USB_READTHREAD_NOT_INIT);
}
// Make sure that the read thread is alive
if (pThreadData->hReadThread != NULL)
{
// Request for the read thread to die
pThreadData->bKillReadThread = TRUE;
// close thread
xnOSWaitAndTerminateThread(&pThreadData->hReadThread, XN_USB_READ_THREAD_KILL_TIMEOUT);
pThreadData->hReadThread = NULL;
}
// Free any buffers and events if necessary...
if (pThreadData->pBuffersInfo != NULL)
{
for (XnUInt32 nBufIdx = 0; nBufIdx < pThreadData->nNumBuffers; nBufIdx++)
{
if (pThreadData->pOvlpIO[nBufIdx].hEvent != NULL)
{
xnOSCloseEvent(&pThreadData->pOvlpIO[nBufIdx].hEvent);
}
if (pThreadData->pBuffersInfo[nBufIdx].pBuffer != NULL)
{
XN_ALIGNED_FREE_AND_NULL(pThreadData->pBuffersInfo[nBufIdx].pBuffer);
}
}
XN_ALIGNED_FREE_AND_NULL(pThreadData->pBuffersInfo);
XN_ALIGNED_FREE_AND_NULL(pThreadData->pOvlpIO);
}
// Re-init the overlapped I/O structs (they cannot be reused because of completion I/O port)
nRetVal = xnUSBInitOvlp(pEPHandle);
if (nRetVal != XN_STATUS_OK)
{
return (XN_STATUS_USB_READTHREAD_SHUTDOWN_FAILED);
}
// Mark that this EP doesn't have a read thread anymore
pThreadData->bInUse = FALSE;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus XN_C_DECL xnUSBRegisterToConnectivityEvents(XnUInt16 nVendorID, XnUInt16 nProductID, XnUSBDeviceCallbackFunctionPtr pFunc, void* pCookie, XnRegistrationHandle* phRegistration)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pFunc);
XN_VALIDATE_OUTPUT_PTR(phRegistration);
XnUInt32 nDummy;
XnUSBEventCallback* pCallback;
XN_VALIDATE_NEW(pCallback, XnUSBEventCallback);
pCallback->pFunc = pFunc;
pCallback->pCookie = pCookie;
xnOSStrFormat(pCallback->strVidPid, sizeof(pCallback->strVidPid), &nDummy, "vid_%04x&pid_%04x", nVendorID, nProductID);
nRetVal = g_connectivityEvent.AddLast(pCallback);
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pCallback);
return (nRetVal);
}
*phRegistration = (XnRegistrationHandle)pCallback;
return XN_STATUS_OK;
}
XN_C_API void XN_C_DECL xnUSBUnregisterFromConnectivityEvents(XnRegistrationHandle hRegistration)
{
XnUSBEventCallback* pCallback = reinterpret_cast<XnUSBEventCallback*>(hRegistration);
XnUSBEventCallbackList::Iterator it = g_connectivityEvent.Find(pCallback);
if (it != g_connectivityEvent.End())
{
g_connectivityEvent.Remove(it);
XN_DELETE(pCallback);
}
}
//---------------------------------------------------------------------------
// Deprecated stuff
//---------------------------------------------------------------------------
static XnRegistrationHandle g_hDeprecatedCallback = NULL;
static XnUSBEventCallbackFunctionPtr g_pDeprecatedCallbackFunc = NULL;
static void* g_pDeprecatedCallbackCookie = NULL;
static void XN_CALLBACK_TYPE XnUSBDeviceCallbackBC(XnUSBEventArgs* pArgs, void* /*pCookie*/)
{
if (g_pDeprecatedCallbackFunc != NULL)
{
g_pDeprecatedCallbackFunc(pArgs->eventType, const_cast<XnChar*>(pArgs->strDevicePath), g_pDeprecatedCallbackCookie);
}
}
XN_C_API XnStatus xnUSBSetCallbackHandler(XnUInt16 nVendorID, XnUInt16 nProductID, void* /*pExtraParam*/, XnUSBEventCallbackFunctionPtr pCallbackFunction, void* pCallbackData)
{
if (g_hDeprecatedCallback == NULL)
{
XnStatus nRetVal = xnUSBRegisterToConnectivityEvents(nVendorID, nProductID, XnUSBDeviceCallbackBC, NULL, &g_hDeprecatedCallback);
XN_IS_STATUS_OK(nRetVal);
// Ugly hack: previous behavior was to ignore vendor and product, and call callback for every event
// we place a string that is always there.
XnUSBEventCallback* pCallback = (XnUSBEventCallback*)g_hDeprecatedCallback;
xnOSStrCopy(pCallback->strVidPid, "vid", sizeof(pCallback->strVidPid));
}
g_pDeprecatedCallbackFunc = pCallbackFunction;
g_pDeprecatedCallbackCookie = pCallbackData;
return XN_STATUS_OK;
}
|