VirtualBox

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

Last change on this file since 27709 was 23055, checked in by vboxsync, 15 years ago

VBoxTray: Added skeleton for tray icon event handling.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/* $Id: VBoxTray.h 23055 2009-09-16 09:30:30Z vboxsync $ */
2/** @file
3 * VBoxTray - Guest Additions Tray, Internal Header.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___VBOXTRAY_H
23#define ___VBOXTRAY_H
24
25#include <windows.h>
26#include <tchar.h>
27#include <stdio.h>
28#include <stdarg.h>
29#include <process.h>
30
31#include <iprt/initterm.h>
32#include <iprt/string.h>
33
34#include <VBox/version.h>
35#include <VBox/Log.h>
36#include <VBox/VBoxGuest.h> /** @todo use the VbglR3 interface! */
37#include <VBox/VBoxGuestLib.h>
38
39#define WM_VBOX_RESTORED WM_APP + 1
40#define WM_VBOX_CHECK_VRDP WM_APP + 2
41#define WM_VBOX_CHECK_HOSTVERSION WM_APP + 3
42#define WM_VBOX_TRAY WM_APP + 4
43
44#define ID_TRAYICON 2000
45
46
47/* The environment information for services. */
48typedef struct _VBOXSERVICEENV
49{
50 HINSTANCE hInstance;
51 HANDLE hDriver;
52 HANDLE hStopEvent;
53} VBOXSERVICEENV;
54
55/* The service initialization info and runtime variables. */
56typedef struct _VBOXSERVICEINFO
57{
58 char *pszName;
59 int (* pfnInit) (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);
60 unsigned (__stdcall * pfnThread) (void *pInstance);
61 void (* pfnDestroy) (const VBOXSERVICEENV *pEnv, void *pInstance);
62
63 /* Variables. */
64 HANDLE hThread;
65 void *pInstance;
66 bool fStarted;
67
68} VBOXSERVICEINFO;
69
70
71extern HWND gToolWindow;
72extern HINSTANCE gInstance;
73
74extern void VBoxServiceReloadCursor(void);
75
76#endif /* !___VBOXTRAY_H */
77
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