VirtualBox

Changeset 3551 in vbox for trunk/src/VBox/Additions/WINNT


Ignore:
Timestamp:
Jul 11, 2007 1:25:38 PM (18 years ago)
Author:
vboxsync
Message:

Updates for guest desktop integration

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  
    3434VBoxVideo_DEFS        = LOG_TO_BACKDOOR
    3535#VBoxVideo_DEFS        += LOG_ENABLED
     36VBoxVideo_INCS        = ..\..\include
    3637VBoxVideo_LDFLAGS     = /Entry:DriverEntry@8
    3738VBoxVideo_SOURCES     = \
  • trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp

    r3410 r3551  
    2727
    2828#include <VBox/VBoxGuestLib.h>
     29#include <VBoxDisplay.h>
    2930
    3031#if _MSC_VER >= 1400 /* bird: MS fixed swprintf to be standard-conforming... */
     
    14601461        }
    14611462
     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
    14621475        default:
    14631476            dprintf(("VBoxVideo::VBoxVideoStartIO: unsupported %p, fn %d(0x%x)\n",
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette