VBoxDisplay.h revision e068057c82b010bc7cc663e8f57ac3ef1890a33c
0N/A/** @file
0N/A * VBoxSeamless - Display notifications
0N/A */
292N/A
0N/A/*
0N/A * Copyright (C) 2006-2007 Oracle Corporation
0N/A *
0N/A * This file is part of VirtualBox Open Source Edition (OSE), as
292N/A * available from http://www.virtualbox.org. This file is free software;
292N/A * you can redistribute it and/or modify it under the terms of the GNU
292N/A * General Public License (GPL) as published by the Free Software
292N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
0N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
0N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
0N/A */
292N/A
292N/A#ifndef __VBOXSERVICEDISPLAY__H
292N/A#define __VBOXSERVICEDISPLAY__H
292N/A
292N/A/* The display service prototypes. */
292N/Aint VBoxDisplayInit (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);
292N/Aunsigned __stdcall VBoxDisplayThread (void *pInstance);
292N/Avoid VBoxDisplayDestroy (const VBOXSERVICEENV *pEnv, void *pInstance);
292N/A
292N/A#ifndef VBOX_WITH_WDDM
292N/Astatic bool isVBoxDisplayDriverActive (void);
0N/A#else
0N/A/* @misha: getVBoxDisplayDriverType is used instead.
0N/A * it seems bad to put static function declaration to header,
0N/A * so it is moved to VBoxDisplay.cpp */
0N/A#endif
0N/A
0N/A#endif /* __VBOXSERVICEDISPLAY__H */
0N/A