Changeset 3551 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jul 11, 2007 1:25:38 PM (18 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Makefile.kmk
r2981 r3551 34 34 VBoxVideo_DEFS = LOG_TO_BACKDOOR 35 35 #VBoxVideo_DEFS += LOG_ENABLED 36 VBoxVideo_INCS = ..\..\include 36 37 VBoxVideo_LDFLAGS = /Entry:DriverEntry@8 37 38 VBoxVideo_SOURCES = \ -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r3410 r3551 27 27 28 28 #include <VBox/VBoxGuestLib.h> 29 #include <VBoxDisplay.h> 29 30 30 31 #if _MSC_VER >= 1400 /* bird: MS fixed swprintf to be standard-conforming... */ … … 1460 1461 } 1461 1462 1463 /* Private ioctls */ 1464 case IOCTL_VIDEO_VBOX_SETVISIBLEREGION: 1465 { 1466 if (RequestPacket->InputBufferLength < sizeof(RTRECT)) 1467 { 1468 dprintf(("VBoxVideo::IOCTL_VIDEO_VBOX_SETVISIBLEREGION: output buffer too small: %d needed: %d!!!\n", 1469 RequestPacket->OutputBufferLength, sizeof(RTRECT))); 1470 RequestPacket->StatusBlock->Status = ERROR_INSUFFICIENT_BUFFER; 1471 return FALSE; 1472 } 1473 } 1474 1462 1475 default: 1463 1476 dprintf(("VBoxVideo::VBoxVideoStartIO: unsupported %p, fn %d(0x%x)\n",
Note:
See TracChangeset
for help on using the changeset viewer.