Changeset 21319 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Jul 7, 2009 12:10:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r21289 r21319 441 441 #endif 442 442 443 #if 0 443 444 extern int CMC_API 444 445 vboxadd_cmc_ctl_guest_filter_mask (uint32_t or_mask, uint32_t not_mask); 446 #endif 445 447 446 448 /* Module initialization/finalization handlers */ … … 469 471 } 470 472 473 #if 0 471 474 if (vboxadd_cmc_ctl_guest_filter_mask (VMMDEV_EVENT_HGCM, 0)) { 472 475 rcRet = -EINVAL; 473 476 goto fail0; 474 477 } 478 #endif 475 479 476 480 rcVBox = vboxInit (); … … 506 510 vboxUninit (); 507 511 fail0: 512 #if 0 508 513 vboxadd_cmc_ctl_guest_filter_mask (0, VMMDEV_EVENT_HGCM); 514 #endif 509 515 unregister_filesystem (&vboxsf_fs_type); 510 516 return rcRet; … … 518 524 vboxDisconnect (&client_handle); 519 525 vboxUninit (); 526 #if 0 520 527 vboxadd_cmc_ctl_guest_filter_mask (0, VMMDEV_EVENT_HGCM); 528 #endif 521 529 unregister_filesystem (&vboxsf_fs_type); 522 530 }
Note:
See TracChangeset
for help on using the changeset viewer.