~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201210021442

« back to all changes in this revision

Viewing changes to lib/include/conf.h

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-03-31 14:20:05 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110331142005-3n9red91p7ogkweo
Tags: 2011.03.28-387002-0ubuntu1
* Merge latest upstream git tag.  This has the unlocked_ioctl change
  needed to fix dkms build failures (LP: #727342)
* Changes in debian/rules:
  - work around a bug in toolbox/Makefile, where install-exec-hook is
    not happening.  This needs to get fixed the right way.
  - don't install 'vmware-user' which seems to no longer exist
  - move /etc/xdg into open-vm-toolbox (which should be done using .install)
* debian/open-vm-tools.init: add 'modprobe [-r] vmblock'. (LP: #332323)
* debian/rules and debian/open-vm-toolbox.lintian-overrides:
  - Make vmware-user-suid-wrapper suid-root (LP: #332323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
#define CONFGROUPNAME_GUESTINFO "guestinfo"
68
68
 
69
69
/**
 
70
 * Lets users disable just the perf monitor.
 
71
 */
 
72
#define CONFNAME_GUESTINFO_DISABLEPERFMON "disable-perf-mon"
 
73
 
 
74
/**
70
75
 * Lets users disable just DiskInfo.
 
76
 *
 
77
 * If thinking of deprecating this, please read bug 535343 first.
71
78
 */
72
79
#define CONFNAME_GUESTINFO_DISABLEQUERYDISKINFO "disable-query-diskinfo"
73
80
 
88
95
 
89
96
 
90
97
/*
 
98
 ******************************************************************************
 
99
 * BEGIN Unity goodies.
 
100
 */
 
101
 
 
102
/**
 
103
 * Defines the string used for the Unity config file group.
 
104
 */
 
105
#define CONFGROUPNAME_UNITY "unity"
 
106
 
 
107
/**
 
108
 * Lets users enable debug info from Unity.
 
109
 */
 
110
#define CONFNAME_UNITY_ENABLEDEBUG "debug"
 
111
 
 
112
/**
 
113
 * Lets users override system decisions about whether unity should be available.
 
114
 */
 
115
#define CONFNAME_UNITY_FORCEENABLE "forceEnable"
 
116
 
 
117
/**
 
118
 * Lets users override the desktop background color when in Unity mode.
 
119
 */
 
120
#define CONFNAME_UNITY_BACKGROUNDCOLOR "desktop.backgroundColor"
 
121
 
 
122
/**
 
123
 * Lets users enable (or disable) the Protocol Buffer enabled service
 
124
 */
 
125
#define CONFNAME_UNITY_ENABLEPBRPC "pbrpc.enable"
 
126
 
 
127
/**
 
128
 * Lets users configure the socket type for the PBRPC Services
 
129
 */
 
130
#define CONFNAME_UNITY_PBRPCSOCKETTYPE "pbrpc.socketType"
 
131
#define CONFNAME_UNITY_PBRPCSOCKETTYPE_IPSOCKET "ipsocket"
 
132
#define CONFNAME_UNITY_PBRPCSOCKETTYPE_VSOCKET "vsocket"
 
133
 
 
134
/*
 
135
 * END Unity goodies.
 
136
 ******************************************************************************
 
137
 */
 
138
 
 
139
 
 
140
/*
91
141
 * Tell the tools to show the wireless icon in the guest.
92
142
 */
93
143
 
110
160
/* Wait 5 seconds between polls to see if the conf file has changed */
111
161
#define CONF_POLL_TIME     500
112
162
 
113
 
GuestApp_Dict *Conf_Load(void);
114
 
Bool Conf_ReloadFile(GuestApp_Dict **pConfDict);
115
 
 
116
163
#endif /* __CONF_H__ */