~n-muench/ubuntu/precise/open-vm-tools/open-vm-tools-precise.sid-merge1

« back to all changes in this revision

Viewing changes to lib/include/guestInfoServer.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-12-06 07:45:05 UTC
  • mfrom: (1.1.8 upstream) (2.4.10 sid)
  • Revision ID: james.westby@ubuntu.com-20091206074505-43rp7oejjgp0y2re
Tags: 2009.11.16-210370-1
* Merging upstream version 2009.11.16-210370.
* Moving vmusr plugins from open-vm-tools to open-vm-toolbox (Closes:
  #539282, #557215).
* Correcting plugin location (Closes: #545222, #549044).
* Dropping la files (Closes: #551626).
* Adding open-vm-toolbox lintian overrides.
* Removing test plugin.
* Removing unused plugin symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*********************************************************
2
 
 * Copyright (C) 2003 VMware, Inc. All rights reserved.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify it
5
 
 * under the terms of the GNU Lesser General Public License as published
6
 
 * by the Free Software Foundation version 2.1 and no later version.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
11
 
 * License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program; if not, write to the Free Software Foundation, Inc.,
15
 
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
16
 
 *
17
 
 *********************************************************/
18
 
 
19
 
/*
20
 
 * guestInfoServer.h --
21
 
 *
22
 
 *      GuestInfo server
23
 
 */
24
 
 
25
 
#ifndef _GUEST_INFO_SERVER_H_
26
 
#define _GUEST_INFO_SERVER_H_
27
 
 
28
 
#include "vm_basic_types.h"
29
 
#include "dbllnklst.h"
30
 
 
31
 
#ifdef _WIN32
32
 
void GuestInfoServer_Main(void *data);
33
 
#endif
34
 
Bool GuestInfoServer_Init(DblLnkLst_Links * eventQueue);
35
 
void GuestInfoServer_Cleanup(void);
36
 
void GuestInfoServer_VMResumedNotify(void);
37
 
uint64 GuestInfo_GetAvailableDiskSpace(char *pathName);
38
 
void GuestInfoServer_DisableDiskInfoQuery(Bool disable);
39
 
Bool GuestInfoServer_SendUptime(void);
40
 
 
41
 
#endif // _GUEST_INFO_SERVER_H_