VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.h@ 42654

Last change on this file since 42654 was 42473, checked in by vboxsync, 12 years ago

VBoxHeadless/VideoCapture: fixed the testbox failure issue observed in r79610. Integration of VideoRecFB* with build process

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1/** @file
2 *
3 * VBox frontends: VRDE (headless Remote Desktop server):
4 * Header file with registration call for VideoRec framebuffer
5 */
6
7/*
8 * Copyright (C) 2006-2010 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef __H_VBOXHEADLESS
20#define __H_VBOXHEADLESS
21
22#include <VBox/com/VirtualBox.h>
23
24#include <iprt/uuid.h>
25
26#include <VBox/com/com.h>
27#include <VBox/com/string.h>
28
29#include <iprt/initterm.h>
30#include <iprt/critsect.h>
31
32/**
33 * Callback function to register an VideoRec framebuffer.
34 *
35 * @returns COM status code.
36 * @param width Framebuffer width.
37 * @param height Framebuffer height.
38 * @param bitrate Bitrate of mpeg file to be created.
39 * @param pixelFormat Framebuffer pixel format
40 * @param filename Name of mpeg file to be created
41 * @retval retVal The new framebuffer
42 */
43typedef DECLCALLBACK(HRESULT) FNREGISTERVIDEORECFB(ULONG width,
44 ULONG height, ULONG bitrate,
45 com::Bstr filename,
46 IFramebuffer **retVal);
47typedef FNREGISTERVIDEORECFB *PFNREGISTERVIDEORECFB;
48
49#endif // __H_VBOXHEADLESS
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use