Last change
on this file since 4878 was 4071, checked in by vboxsync, 17 years ago |
Biggest check-in ever. New source code headers for all (C) innotek files.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | * Shared Clipboard:
|
---|
3 | * Common header for the service extension.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___VBox_HostService_VBoxClipboardExt_h
|
---|
19 | #define ___VBox_HostService_VBoxClipboardExt_h
|
---|
20 |
|
---|
21 | #include <VBox/types.h>
|
---|
22 |
|
---|
23 | #define VBOX_CLIPBOARD_EXT_FN_SET_CALLBACK (0)
|
---|
24 | #define VBOX_CLIPBOARD_EXT_FN_FORMAT_ANNOUNCE (1)
|
---|
25 | #define VBOX_CLIPBOARD_EXT_FN_DATA_READ (2)
|
---|
26 | #define VBOX_CLIPBOARD_EXT_FN_DATA_WRITE (3)
|
---|
27 |
|
---|
28 | typedef DECLCALLBACK(int) VRDPCLIPBOARDEXTCALLBACK (uint32_t u32Function, uint32_t u32Format, void *pvData, uint32_t cbData);
|
---|
29 | typedef VRDPCLIPBOARDEXTCALLBACK *PFNVRDPCLIPBOARDEXTCALLBACK;
|
---|
30 |
|
---|
31 | typedef struct _VBOXCLIPBOARDEXTPARMS
|
---|
32 | {
|
---|
33 | uint32_t u32Format;
|
---|
34 | void *pvData;
|
---|
35 | uint32_t cbData;
|
---|
36 | } VBOXCLIPBOARDEXTPARMS;
|
---|
37 |
|
---|
38 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.