1 | /*
|
---|
2 | * Copyright (C) 2007 Tim Schwartz
|
---|
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 | * Sun 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, Sun 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 | #ifndef _LMUSE_H
|
---|
28 | #define _LMUSE_H
|
---|
29 |
|
---|
30 | #ifdef __cplusplus
|
---|
31 | extern "C" {
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include "lmcons.h"
|
---|
35 | #include "lmuseflg.h"
|
---|
36 |
|
---|
37 | typedef struct _USE_INFO_1
|
---|
38 | {
|
---|
39 | LMSTR ui1_local;
|
---|
40 | LMSTR ui1_remote;
|
---|
41 | LMSTR ui1_password;
|
---|
42 | DWORD ui1_status;
|
---|
43 | DWORD ui1_asg_type;
|
---|
44 | DWORD ui1_refcount;
|
---|
45 | DWORD ui1_usecount;
|
---|
46 | } USE_INFO_1, *PUSE_INFO_1, *LPUSE_INFO_1;
|
---|
47 |
|
---|
48 | typedef struct _USE_INFO_2
|
---|
49 | {
|
---|
50 | LMSTR ui2_local;
|
---|
51 | LMSTR ui2_remote;
|
---|
52 | LMSTR ui2_password;
|
---|
53 | DWORD ui2_status;
|
---|
54 | DWORD ui2_asg_type;
|
---|
55 | DWORD ui2_refcount;
|
---|
56 | DWORD ui2_usecount;
|
---|
57 | LMSTR ui2_username;
|
---|
58 | LMSTR ui2_domainname;
|
---|
59 | } USE_INFO_2, *PUSE_INFO_2, *LPUSE_INFO_2;
|
---|
60 |
|
---|
61 | NET_API_STATUS WINAPI NetUseAdd(LMSTR,DWORD,LPBYTE,LPDWORD);
|
---|
62 | NET_API_STATUS WINAPI NetUseDel(LMSTR,LMSTR,DWORD);
|
---|
63 | NET_API_STATUS WINAPI NetUseEnum(LMSTR,DWORD,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
|
---|
64 | NET_API_STATUS WINAPI NetUseGetInfo(LMSTR,LMSTR,DWORD,LPBYTE*);
|
---|
65 |
|
---|
66 | #ifdef __cplusplus
|
---|
67 | }
|
---|
68 | #endif
|
---|
69 |
|
---|
70 | #endif /* _LMUSE_H */
|
---|