VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.h@ 46478

Last change on this file since 46478 was 45837, checked in by vboxsync, 12 years ago

VBoxTray/seamless: more fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* $Id: VBoxTray.h 45837 2013-04-30 12:42:28Z vboxsync $ */
2/** @file
3 * VBoxTray - Guest Additions Tray, Internal Header.
4 */
5
6/*
7 * Copyright (C) 2006-2012 Oracle Corporation
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 ___VBOXTRAY_H
19#define ___VBOXTRAY_H
20
21# define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
22# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
23# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
24# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
25# define _interlockedbittestandset _interlockedbittestandset_StupidDDKVsCompilerCrap
26# define _interlockedbittestandreset _interlockedbittestandreset_StupidDDKVsCompilerCrap
27# define _interlockedbittestandset64 _interlockedbittestandset64_StupidDDKVsCompilerCrap
28# define _interlockedbittestandreset64 _interlockedbittestandreset64_StupidDDKVsCompilerCrap
29# pragma warning(disable : 4163)
30#include <windows.h>
31# pragma warning(default : 4163)
32# undef _InterlockedExchange
33# undef _InterlockedExchangeAdd
34# undef _InterlockedCompareExchange
35# undef _InterlockedAddLargeStatistic
36# undef _interlockedbittestandset
37# undef _interlockedbittestandreset
38# undef _interlockedbittestandset64
39# undef _interlockedbittestandreset64
40
41#include <tchar.h>
42#include <stdio.h>
43#include <stdarg.h>
44#include <process.h>
45
46#include <iprt/initterm.h>
47#include <iprt/string.h>
48
49#include <VBox/version.h>
50#include <VBox/Log.h>
51#include <VBox/VBoxGuest.h> /** @todo use the VbglR3 interface! */
52#include <VBox/VBoxGuestLib.h>
53#include <VBoxDisplay.h>
54
55#include "VBoxDispIf.h"
56
57/*
58 * Windows messsages.
59 */
60
61/**
62 * General VBoxTray messages.
63 */
64#define WM_VBOXTRAY_TRAY_ICON WM_APP + 40
65/**
66 * VM/VMMDev related messsages.
67 */
68#define WM_VBOXTRAY_VM_RESTORED WM_APP + 100
69/**
70 * VRDP messages.
71 */
72#define WM_VBOXTRAY_VRDP_CHECK WM_APP + 301
73
74
75/* The tray icon's ID. */
76#define ID_TRAYICON 2000
77
78
79/*
80 * Timer IDs.
81 */
82#define TIMERID_VBOXTRAY_CHECK_HOSTVERSION 1000
83#define TIMERID_VBOXTRAY_CAPS_TIMER 1001
84#define TIMERID_VBOXTRAY_DT_TIMER 1002
85#define TIMERID_VBOXTRAY_ST_DELAYED_INIT_TIMER 1003
86
87/* The environment information for services. */
88typedef struct _VBOXSERVICEENV
89{
90 HINSTANCE hInstance;
91 HANDLE hDriver;
92 HANDLE hStopEvent;
93 /* display driver interface, XPDM - WDDM abstraction see VBOXDISPIF** definitions above */
94 VBOXDISPIF dispIf;
95} VBOXSERVICEENV;
96
97/* The service initialization info and runtime variables. */
98typedef struct _VBOXSERVICEINFO
99{
100 char *pszName;
101 int (* pfnInit) (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);
102 unsigned (__stdcall * pfnThread) (void *pInstance);
103 void (* pfnDestroy) (const VBOXSERVICEENV *pEnv, void *pInstance);
104
105 /* Variables. */
106 HANDLE hThread;
107 void *pInstance;
108 bool fStarted;
109} VBOXSERVICEINFO;
110
111/* Globally unique (system wide) message registration. */
112typedef struct _VBOXGLOBALMESSAGE
113{
114 /** Message name. */
115 char *pszName;
116 /** Function pointer for handling the message. */
117 int (* pfnHandler) (WPARAM wParam, LPARAM lParam);
118
119 /* Variables. */
120
121 /** Message ID;
122 * to be filled in when registering the actual message. */
123 UINT uMsgID;
124} VBOXGLOBALMESSAGE, *PVBOXGLOBALMESSAGE;
125
126extern HWND ghwndToolWindow;
127extern HINSTANCE ghInstance;
128
129#endif /* !___VBOXTRAY_H */
130
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