VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/lmwksta.h@ 78046

Last change on this file since 78046 was 53206, checked in by vboxsync, 10 years ago

Devices/vmsvga: header fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/*
2 * Copyright 2002 Andriy Palamarchuk
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 __WINE_LMWKSTA_H
29#define __WINE_LMWKSTA_H
30
31#include <lmcons.h>
32#include <lmuseflg.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38typedef struct _WKSTA_TRANSPORT_INFO_0 {
39 DWORD wkti0_quality_of_service;
40 DWORD wkti0_number_of_vcs;
41 LMSTR wkti0_transport_name;
42 LMSTR wkti0_transport_address;
43 BOOL wkti0_wan_ish;
44} WKSTA_TRANSPORT_INFO_0, *PWKSTA_TRANSPORT_INFO_0, *LPWKSTA_TRANSPORT_INFO_0;
45
46typedef struct _WKSTA_USER_INFO_0 {
47 LMSTR wkui0_username;
48} WKSTA_USER_INFO_0, *PWKSTA_USER_INFO_0, *LPWKSTA_USER_INFO_0;
49
50typedef struct _WKSTA_USER_INFO_1 {
51 LMSTR wkui1_username;
52 LMSTR wkui1_logon_domain;
53 LMSTR wkui1_oth_domains;
54 LMSTR wkui1_logon_server;
55} WKSTA_USER_INFO_1, *PWKSTA_USER_INFO_1, *LPWKSTA_USER_INFO_1;
56
57typedef struct _WKSTA_USER_INFO_1101 {
58 LMSTR wkui1101_oth_domains;
59} WKSTA_USER_INFO_1101, *PWKSTA_USER_INFO_1101, *LPWKSTA_USER_INFO_1101;
60
61typedef struct _WKSTA_INFO_100 {
62 DWORD wki100_platform_id;
63 LMSTR wki100_computername;
64 LMSTR wki100_langroup;
65 DWORD wki100_ver_major;
66 DWORD wki100_ver_minor;
67} WKSTA_INFO_100, *PWKSTA_INFO_100, *LPWKSTA_INFO_100;
68
69typedef struct _WKSTA_INFO_101 {
70 DWORD wki101_platform_id;
71 LMSTR wki101_computername;
72 LMSTR wki101_langroup;
73 DWORD wki101_ver_major;
74 DWORD wki101_ver_minor;
75 LMSTR wki101_lanroot;
76} WKSTA_INFO_101, *PWKSTA_INFO_101, *LPWKSTA_INFO_101;
77
78typedef struct _WKSTA_INFO_102 {
79 DWORD wki102_platform_id;
80 LMSTR wki102_computername;
81 LMSTR wki102_langroup;
82 DWORD wki102_ver_major;
83 DWORD wki102_ver_minor;
84 LMSTR wki102_lanroot;
85 DWORD wki102_logged_on_users;
86} WKSTA_INFO_102, *PWKSTA_INFO_102, *LPWKSTA_INFO_102;
87
88/* workstation */
89NET_API_STATUS WINAPI NetWkstaGetInfo(LMSTR,DWORD,LPBYTE*);
90NET_API_STATUS WINAPI NetWkstaSetInfo(LMSTR,DWORD,LPBYTE,LPDWORD);
91NET_API_STATUS WINAPI NetWkstaTransportAdd(LMSTR,DWORD,LPBYTE,LPDWORD);
92NET_API_STATUS WINAPI NetWkstaTransportDel(LMSTR,LMSTR,DWORD);
93NET_API_STATUS WINAPI NetWkstaTransportEnum(LMSTR,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
94NET_API_STATUS WINAPI NetWkstaUserGetInfo(LMSTR,DWORD,LPBYTE*);
95NET_API_STATUS WINAPI NetWkstaUserSetInfo(LMSTR,DWORD,LPBYTE,LPDWORD);
96NET_API_STATUS WINAPI NetWkstaUserEnum(LMSTR,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
97
98#ifdef __cplusplus
99}
100#endif
101
102#endif
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