Juan Lang | 159e0dc | 2004-03-01 21:18:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2003 Juan Lang |
| 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 |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Juan Lang | 159e0dc | 2004-03-01 21:18:49 +0000 | [diff] [blame] | 17 | */ |
| 18 | #ifndef _LMSHARE_H |
| 19 | #define _LMSHARE_H |
| 20 | |
| 21 | #ifdef __cplusplus |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | typedef struct _SHARE_INFO_0 { |
| 26 | LMSTR shi0_netname; |
| 27 | } SHARE_INFO_0, *PSHARE_INFO_0, *LPSHARE_INFO_0; |
| 28 | |
| 29 | typedef struct _SHARE_INFO_1 { |
| 30 | LMSTR shi1_netname; |
| 31 | DWORD shi1_type; |
| 32 | LMSTR shi1_remark; |
| 33 | } SHARE_INFO_1, *PSHARE_INFO_1, *LPSHARE_INFO_1; |
| 34 | |
| 35 | NET_API_STATUS WINAPI NetShareEnum(LMSTR servername, DWORD level, |
| 36 | LPBYTE *bufptr, DWORD prefmaxlen, LPDWORD entriesread, LPDWORD totalentries, |
| 37 | LPDWORD resume_handle); |
| 38 | |
| 39 | #define STYPE_DISKTREE 0 |
| 40 | #define STYPE_PRINTQ 1 |
| 41 | #define STYPE_DEVICE 2 |
| 42 | #define STYPE_IPC 3 |
| 43 | #define STYPE_SPECIAL 0x80000000 |
| 44 | |
Paul Vriens | e29dd37 | 2006-04-06 14:34:14 +0200 | [diff] [blame] | 45 | NET_API_STATUS NET_API_FUNCTION NetSessionEnum(LMSTR servername, LMSTR UncClientName, |
| 46 | LMSTR username, DWORD level, LPBYTE *bufptr, DWORD prefmaxlen, LPDWORD entriesread, |
| 47 | LPDWORD totalentries, LPDWORD resume_handle); |
| 48 | |
Juan Lang | 159e0dc | 2004-03-01 21:18:49 +0000 | [diff] [blame] | 49 | #ifdef __cplusplus |
| 50 | } |
| 51 | #endif |
| 52 | |
| 53 | #endif /* ndef _LMSHARE_H */ |