Merged font.h and path.h into gdi.h. Moved x11font.h to
[wine] / include / lmwksta.h
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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 /* NetBIOS */
29 UCHAR WINAPI Netbios(PNCB pncb);
30
31 typedef struct _WKSTA_USER_INFO_0 {
32     LPWSTR  wkui0_username;
33 } WKSTA_USER_INFO_0, *PWKSTA_USER_INFO_0, *LPWKSTA_USER_INFO_0;
34
35 typedef struct _WKSTA_USER_INFO_1 {
36     LPWSTR  wkui1_username;
37     LPWSTR  wkui1_logon_domain;
38     LPWSTR  wkui1_oth_domains;
39     LPWSTR  wkui1_logon_server;
40 } WKSTA_USER_INFO_1, *PWKSTA_USER_INFO_1, *LPWKSTA_USER_INFO_1;
41
42 typedef struct _WKSTA_USER_INFO_1101 {
43     LPWSTR  wkui1101_oth_domains;
44 } WKSTA_USER_INFO_1101, *PWKSTA_USER_INFO_1101, *LPWKSTA_USER_INFO_1101;
45
46 /* workstation */
47 NET_API_STATUS WINAPI NetWkstaUserGetInfo(LPWSTR reserved, DWORD level, PBYTE* bufptr);
48
49 #ifdef __cplusplus
50 }
51 #endif
52
53 #endif