VirtualBox

source: vbox/trunk/src/VBox/Main/win32/svchlp.h@ 7692

Last change on this file since 7692 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 2.1 KB
Line 
1/** @file
2 *
3 * Declaration of SVC Helper Process control routines.
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef __VBox_svchlp_h__
19#define __VBox_svchlp_h__
20
21#include "VBox/com/string.h"
22#include "VBox/com/guid.h"
23
24#include <VBox/err.h>
25
26#include <windows.h>
27
28struct SVCHlpMsg
29{
30 enum Code
31 {
32 Null = 0, /* no parameters */
33 OK, /* no parameters */
34 Error, /* Utf8Str string (may be null but must present) */
35
36 CreateHostNetworkInterface = 100, /* see usage in code */
37 CreateHostNetworkInterface_OK, /* see usage in code */
38 RemoveHostNetworkInterface, /* see usage in code */
39 };
40};
41
42class SVCHlpClient
43{
44public:
45
46 SVCHlpClient();
47 virtual ~SVCHlpClient();
48
49 int create (const char *aName);
50 int connect();
51 int open (const char *aName);
52 int close();
53
54 bool isOpen() const { return mIsOpen; }
55 bool isServer() const { return mIsServer; }
56 const com::Utf8Str &name() const { return mName; }
57
58 int write (const void *aVal, size_t aLen);
59 template <typename Scalar>
60 int write (Scalar aVal) { return write (&aVal, sizeof (aVal)); }
61 int write (const com::Utf8Str &aVal);
62 int write (const com::Guid &aGuid);
63
64 int read (void *aVal, size_t aLen);
65 template <typename Scalar>
66 int read (Scalar &aVal) { return read (&aVal, sizeof (aVal)); }
67 int read (com::Utf8Str &aVal);
68 int read (com::Guid &aGuid);
69
70private:
71
72 bool mIsOpen : 1;
73 bool mIsServer : 1;
74
75 HANDLE mReadEnd;
76 HANDLE mWriteEnd;
77 com::Utf8Str mName;
78};
79
80class SVCHlpServer : public SVCHlpClient
81{
82public:
83
84 SVCHlpServer();
85
86 int run();
87};
88
89#endif /* __VBox_svchlp_h__ */
90
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette