Searched defs:g_pInputDevice (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-linux.c135 static struct input_dev *g_pInputDevice = NULL; variable in typeref:struct:input_dev
428 g_pInputDevice = input_allocate_device();
429 if (!g_pInputDevice)
434 g_pInputDevice->id.bustype = BUS_PCI;
435 g_pInputDevice->id.vendor = VMMDEV_VENDORID;
436 g_pInputDevice->id.product = VMMDEV_DEVICEID;
437 g_pInputDevice->id.version = VBOX_SHORT_VERSION;
438 g_pInputDevice->open = vboxguestOpenInputDevice;
439 g_pInputDevice->close = vboxguestCloseInputDevice;
441 g_pInputDevice
[all...]

Completed in 33 milliseconds