explorer:
[reactos.git] / reactos / include / wine / winnetwk.h
1 /* $Id$
2 *
3 * Compatibility header
4 *
5 * This header is wrapper to allow compilation of Wine DLLs under ReactOS
6 * build system. It contains definitions commonly refered to as Wineisms
7 * and definitions that are missing in w32api.
8 */
9
10 #include_next <winnetwk.h>
11
12 #ifndef __WINE_WINNETWK_H
13 #define __WINE_WINNETWK_H
14
15 /* WNetEnumCachedPasswords */
16 typedef struct tagPASSWORD_CACHE_ENTRY
17 {
18 WORD cbEntry;
19 WORD cbResource;
20 WORD cbPassword;
21 BYTE iEntry;
22 BYTE nType;
23 BYTE abResource[1];
24 } PASSWORD_CACHE_ENTRY;
25
26 typedef BOOL (CALLBACK *ENUMPASSWORDPROC)(PASSWORD_CACHE_ENTRY *, DWORD);
27 UINT WINAPI WNetEnumCachedPasswords( LPSTR, WORD, BYTE, ENUMPASSWORDPROC, DWORD);
28
29 #endif /* __WINE_WINNETWK_H */