VBoxDisplay.h revision e62cb87bae732e9968199a3ad153cc94004b7182
0N/A/** @file
0N/A * VBoxSeamless - Display notifications
0N/A */
0N/A
0N/A/*
0N/A * Copyright (C) 2006-2007 Sun Microsystems, Inc.
0N/A *
0N/A * This file is part of VirtualBox Open Source Edition (OSE), as
0N/A * available from http://www.virtualbox.org. This file is free software;
0N/A * you can redistribute it and/or modify it under the terms of the GNU
0N/A * General Public License (GPL) as published by the Free Software
0N/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 *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
0N/A * Clara, CA 95054 USA or visit http://www.sun.com if you need
0N/A * additional information or have any questions.
0N/A */
0N/A
0N/A#ifndef __VBOXSERVICEDISPLAY__H
0N/A#define __VBOXSERVICEDISPLAY__H
0N/A
0N/A/* The display service prototypes. */
0N/Aint VBoxDisplayInit (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);
0N/Aunsigned __stdcall VBoxDisplayThread (void *pInstance);
0N/Avoid VBoxDisplayDestroy (const VBOXSERVICEENV *pEnv, void *pInstance);
0N/A
0N/Astatic bool isVBoxDisplayDriverActive (void);
288N/A
0N/A#endif /* __VBOXSERVICEDISPLAY__H */
0N/A