Fixed atom test to work on Windows.
[wine/multimedia.git] / include / lmwksta.h
blob19c52d8810d90539bcb611bb05a0410f52ac42c0
1 /*
2 * Copyright 2002 Andriy Palamarchuk
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.
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.
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
19 #ifndef __WINE_LMWKSTA_H
20 #define __WINE_LMWKSTA_H
22 #include <lmcons.h>
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
28 /* NetBIOS */
29 UCHAR WINAPI Netbios(PNCB pncb);
31 typedef struct _WKSTA_USER_INFO_0 {
32 LPWSTR wkui0_username;
33 } WKSTA_USER_INFO_0, *PWKSTA_USER_INFO_0, *LPWKSTA_USER_INFO_0;
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;
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;
46 /* workstation */
47 NET_API_STATUS WINAPI NetWkstaUserGetInfo(LPWSTR reserved, DWORD level, PBYTE* bufptr);
49 #ifdef __cplusplus
51 #endif
53 #endif