VirtualBox

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

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

Windows Guest Additions: Support for querying user idle times.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/* $Id: VBoxTrayMsg.h 47232 2013-07-18 12:00:49Z vboxsync $ */
2/** @file
3 * VBoxTrayMsg - Globally registered messages (RPC) to/from VBoxTray.
4 */
5
6/*
7 * Copyright (C) 2010-2013 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_MSG_H
19#define ___VBOXTRAY_MSG_H
20
21#define VBOXTRAY_IPC_PIPE_PREFIX "VBoxTrayIPC-"
22
23enum VBOXTRAYIPCMSGTYPE
24{
25 /** Restarts VBoxTray. */
26 VBOXTRAYIPCMSGTYPE_RESTART = 10,
27 /** Shows a balloon message in the tray area. */
28 VBOXTRAYIPCMSGTYPE_SHOWBALLOONMSG = 100,
29 /** Retrieves the current user's last input
30 * time. This will be the user VBoxTray is running
31 * under. No actual message for this command
32 * required. */
33 VBOXTRAYIPCMSGTYPE_USERLASTINPUT = 120
34};
35
36/* VBoxTray's IPC header. */
37typedef struct VBOXTRAYIPCHEADER
38{
39 /** @todo Add magic? */
40 /** Header version, must be 0 by now. */
41 uint32_t uHdrVersion;
42 /** Message type. Specifies a message
43 * of VBOXTRAYIPCMSGTYPE. */
44 uint32_t uMsgType;
45 /** Message length (in bytes). This must
46 * include the overall message length, including
47 * (eventual) dynamically allocated areas which
48 * are passed into the message structure.
49 */
50 uint32_t uMsgLen;
51
52} VBOXTRAYIPCHEADER, *PVBOXTRAYIPCHEADER;
53
54/**
55 * Tells VBoxTray to show a balloon message in Windows'
56 * tray area. This may or may not work depending on the
57 * system's configuration / set user preference.
58 */
59typedef struct VBOXTRAYIPCMSG_SHOWBALLOONMSG
60{
61 /** Length of message body (in bytes). */
62 uint32_t cbMsgContent;
63 /** Length of message title (in bytes). */
64 uint32_t cbMsgTitle;
65 /** Message type. */
66 uint32_t uType;
67 /** Time to show the message (in ms). */
68 uint32_t uShowMS;
69 /** Dynamically allocated stuff.
70 *
71 * Note: These must come at the end of the
72 * structure to not overwrite any important
73 * stuff above.
74 */
75 /** Message body. Can be up to 256 chars
76 * long. */
77 char szMsgContent[1];
78 /** Message title. Can be up to 73 chars
79 * long. */
80 char szMsgTitle[1];
81} VBOXTRAYIPCMSG_SHOWBALLOONMSG, *PVBOXTRAYIPCMSG_SHOWBALLOONMSG;
82
83/**
84 * Response telling the last input of the current user.
85 */
86typedef struct VBOXTRAYIPCRES_USERLASTINPUT
87{
88 /** Last occurred user input event (in ms). */
89 uint32_t uLastInputMs;
90} VBOXTRAYIPCRES_USERLASTINPUT, *PVBOXTRAYIPCRES_USERLASTINPUT;
91
92#endif /* !___VBOXTRAY_MSG_H */
93
Note: See TracBrowser for help on using the repository browser.

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