VBoxGuestR3LibMouse.cpp revision bc830c4bf23fbfb4373b949a1d408b4a1c67017d
/* $Id$ */
/** @file
* VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Mouse.
*/
/*
* Copyright (C) 2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "VBGLR3Internal.h"
/**
* Retrieve mouse co-ordinate information from the host.
*
* @returns VBox status code.
*
* @param pfFeatures Where to store the mouse features.
* @param px Where to store the X co-ordinate.
* @param py Where to store the Y co-ordinate.
*/
{
Req.mouseFeatures = 0;
Req.pointerXPos = 0;
Req.pointerYPos = 0;
if (RT_SUCCESS(rc))
{
if (pfFeatures)
if (px)
if (py)
}
return rc;
}
/**
* Send mouse features to the host.
*
* @returns VBox status code.
*
* @param fFeatures Supported mouse pointer features.
*/
{
Req.pointerXPos = 0;
Req.pointerYPos = 0;
}