[21368] | 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 | #ifndef __WINE_LMWKSTA_H
|
---|
| 20 | #define __WINE_LMWKSTA_H
|
---|
| 21 |
|
---|
| 22 | #include <lmcons.h>
|
---|
| 23 |
|
---|
| 24 | #ifdef __cplusplus
|
---|
| 25 | extern "C" {
|
---|
| 26 | #endif
|
---|
| 27 |
|
---|
| 28 | typedef struct _WKSTA_TRANSPORT_INFO_0 {
|
---|
| 29 | DWORD wkti0_quality_of_service;
|
---|
| 30 | DWORD wkti0_number_of_vcs;
|
---|
| 31 | LMSTR wkti0_transport_name;
|
---|
| 32 | LMSTR wkti0_transport_address;
|
---|
| 33 | BOOL wkti0_wan_ish;
|
---|
| 34 | } WKSTA_TRANSPORT_INFO_0, *PWKSTA_TRANSPORT_INFO_0, *LPWKSTA_TRANSPORT_INFO_0;
|
---|
| 35 |
|
---|
| 36 | typedef struct _WKSTA_USER_INFO_0 {
|
---|
| 37 | LMSTR wkui0_username;
|
---|
| 38 | } WKSTA_USER_INFO_0, *PWKSTA_USER_INFO_0, *LPWKSTA_USER_INFO_0;
|
---|
| 39 |
|
---|
| 40 | typedef struct _WKSTA_USER_INFO_1 {
|
---|
| 41 | LMSTR wkui1_username;
|
---|
| 42 | LMSTR wkui1_logon_domain;
|
---|
| 43 | LMSTR wkui1_oth_domains;
|
---|
| 44 | LMSTR wkui1_logon_server;
|
---|
| 45 | } WKSTA_USER_INFO_1, *PWKSTA_USER_INFO_1, *LPWKSTA_USER_INFO_1;
|
---|
| 46 |
|
---|
| 47 | typedef struct _WKSTA_USER_INFO_1101 {
|
---|
| 48 | LMSTR wkui1101_oth_domains;
|
---|
| 49 | } WKSTA_USER_INFO_1101, *PWKSTA_USER_INFO_1101, *LPWKSTA_USER_INFO_1101;
|
---|
| 50 |
|
---|
| 51 | typedef struct _WKSTA_INFO_100 {
|
---|
| 52 | DWORD wki100_platform_id;
|
---|
| 53 | LMSTR wki100_computername;
|
---|
| 54 | LMSTR wki100_langroup;
|
---|
| 55 | DWORD wki100_ver_major;
|
---|
| 56 | DWORD wki100_ver_minor;
|
---|
| 57 | } WKSTA_INFO_100, *PWKSTA_INFO_100, *LPWKSTA_INFO_100;
|
---|
| 58 |
|
---|
| 59 | typedef struct _WKSTA_INFO_101 {
|
---|
| 60 | DWORD wki101_platform_id;
|
---|
| 61 | LMSTR wki101_computername;
|
---|
| 62 | LMSTR wki101_langroup;
|
---|
| 63 | DWORD wki101_ver_major;
|
---|
| 64 | DWORD wki101_ver_minor;
|
---|
| 65 | LMSTR wki101_lanroot;
|
---|
| 66 | } WKSTA_INFO_101, *PWKSTA_INFO_101, *LPWKSTA_INFO_101;
|
---|
| 67 |
|
---|
| 68 | typedef struct _WKSTA_INFO_102 {
|
---|
| 69 | DWORD wki102_platform_id;
|
---|
| 70 | LMSTR wki102_computername;
|
---|
| 71 | LMSTR wki102_langroup;
|
---|
| 72 | DWORD wki102_ver_major;
|
---|
| 73 | DWORD wki102_ver_minor;
|
---|
| 74 | LMSTR wki102_lanroot;
|
---|
| 75 | DWORD wki102_logged_on_users;
|
---|
| 76 | } WKSTA_INFO_102, *PWKSTA_INFO_102, *LPWKSTA_INFO_102;
|
---|
| 77 |
|
---|
| 78 | /* workstation */
|
---|
| 79 | NET_API_STATUS WINAPI NetWkstaGetInfo(LMSTR,DWORD,LPBYTE*);
|
---|
| 80 | NET_API_STATUS WINAPI NetWkstaSetInfo(LMSTR,DWORD,LPBYTE,LPDWORD);
|
---|
| 81 | NET_API_STATUS WINAPI NetWkstaTransportAdd(LMSTR,DWORD,LPBYTE,LPDWORD);
|
---|
| 82 | NET_API_STATUS WINAPI NetWkstaTransportDel(LMSTR,LMSTR,DWORD);
|
---|
| 83 | NET_API_STATUS WINAPI NetWkstaTransportEnum(LMSTR,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
|
---|
| 84 | NET_API_STATUS WINAPI NetWkstaUserGetInfo(LMSTR,DWORD,LPBYTE*);
|
---|
| 85 | NET_API_STATUS WINAPI NetWkstaUserSetInfo(LMSTR,DWORD,LPBYTE,LPDWORD);
|
---|
| 86 | NET_API_STATUS WINAPI NetWkstaUserEnum(LMSTR,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
|
---|
| 87 |
|
---|
| 88 | #ifdef __cplusplus
|
---|
| 89 | }
|
---|
| 90 | #endif
|
---|
| 91 |
|
---|
| 92 | #endif
|
---|