VBoxClipboard.h revision e62cb87bae732e9968199a3ad153cc94004b7182
383N/A/** @file
383N/A * VBoxSeamless - Shared Clipboard
383N/A */
383N/A
383N/A/*
383N/A * Copyright (C) 2006-2007 Sun Microsystems, Inc.
383N/A *
383N/A * This file is part of VirtualBox Open Source Edition (OSE), as
383N/A * available from http://www.virtualbox.org. This file is free software;
383N/A * you can redistribute it and/or modify it under the terms of the GNU
383N/A * General Public License (GPL) as published by the Free Software
383N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
383N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
383N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
383N/A *
383N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
383N/A * Clara, CA 95054 USA or visit http://www.sun.com if you need
383N/A * additional information or have any questions.
873N/A */
383N/A
383N/A#ifndef __VBOXSERVICESHAREDCLIPLBOARD__H
383N/A#define __VBOXSERVICESHAREDCLIPLBOARD__H
383N/A
383N/A/* The shared clipboard service prototypes. */
3215N/Aint VBoxClipboardInit (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);
383N/Aunsigned __stdcall VBoxClipboardThread (void *pInstance);
383N/Avoid VBoxClipboardDestroy (const VBOXSERVICEENV *pEnv, void *pInstance);
383N/A
383N/A
383N/A#endif /* __VBOXSERVICESHAREDCLIPLBOARD__H */
383N/A