~ubuntu-branches/ubuntu/trusty/virtualbox-lts-xenial/trusty-updates

« back to all changes in this revision

Viewing changes to src/VBox/Devices/Graphics/shaderlib/wine/include/wmistr.h

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2016-02-23 14:28:26 UTC
  • Revision ID: package-import@ubuntu.com-20160223142826-bdu69el2z6wa2a44
Tags: upstream-4.3.36-dfsg
ImportĀ upstreamĀ versionĀ 4.3.36-dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2005 Mike McCormack
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 
17
 */
 
18
 
 
19
/*
 
20
 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
 
21
 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
 
22
 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
 
23
 * a choice of LGPL license versions is made available with the language indicating
 
24
 * that LGPLv2 or any later version may be used, or where a choice of which version
 
25
 * of the LGPL is applied is otherwise unspecified.
 
26
 */
 
27
 
 
28
#ifndef _WMISTR_
 
29
#define _WMISTR_
 
30
 
 
31
typedef enum
 
32
{
 
33
    WMI_GET_ALL_DATA = 0,
 
34
    WMI_GET_SINGLE_INSTANCE = 1,
 
35
    WMI_SET_SINGLE_INSTANCE = 2,
 
36
    WMI_SET_SINGLE_ITEM = 3,
 
37
    WMI_ENABLE_EVENTS = 4,
 
38
    WMI_DISABLE_EVENTS = 5,
 
39
    WMI_ENABLE_CONNECTION = 6,
 
40
    WMI_DISABLE_CONNECTION = 7,
 
41
    WMI_REGINFO = 8,
 
42
    WMI_EXECUTE_METHOD = 9,
 
43
} WMIDPREQUESTCODE;
 
44
 
 
45
typedef struct _WNODE_HEADER
 
46
{
 
47
    ULONG BufferSize;
 
48
    ULONG ProvicerId;
 
49
    union
 
50
    {
 
51
        ULONG64 HistoricalContext;
 
52
        struct
 
53
        {
 
54
            ULONG Version;
 
55
            ULONG Linkage;
 
56
        } DUMMYSTRUCTNAME;
 
57
 
 
58
    } DUMMYUNIONNAME;
 
59
    union
 
60
    {
 
61
        HANDLE KernelHandle;
 
62
        LARGE_INTEGER TimeStamp;
 
63
    } DUMMYUNIONNAME2;
 
64
    GUID Guid;
 
65
    ULONG ClientContext;
 
66
    ULONG Flags;
 
67
} WNODE_HEADER, *PWNODE_HEADER;
 
68
 
 
69
#endif /* _WMISTR_ */