mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 10:43:52 +00:00
* Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
This commit is contained in:
parent
28d8ba0d3e
commit
0ee830d7a4
23049 changed files with 0 additions and 1313991 deletions
57
sdk/include/psdk/lmuse.h
Normal file
57
sdk/include/psdk/lmuse.h
Normal file
|
@ -0,0 +1,57 @@
|
|||
#ifndef _LMUSE_H
|
||||
#define _LMUSE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include <lmuseflg.h>
|
||||
#define USE_LOCAL_PARMNUM 1
|
||||
#define USE_REMOTE_PARMNUM 2
|
||||
#define USE_PASSWORD_PARMNUM 3
|
||||
#define USE_ASGTYPE_PARMNUM 4
|
||||
#define USE_USERNAME_PARMNUM 5
|
||||
#define USE_DOMAINNAME_PARMNUM 6
|
||||
#define USE_OK 0
|
||||
#define USE_PAUSED 1
|
||||
#define USE_SESSLOST 2
|
||||
#define USE_DISCONN 2
|
||||
#define USE_NETERR 3
|
||||
#define USE_CONN 4
|
||||
#define USE_RECONN 5
|
||||
#define USE_WILDCARD ((DWORD)-1)
|
||||
#define USE_DISKDEV 0
|
||||
#define USE_SPOOLDEV 1
|
||||
#define USE_CHARDEV 2
|
||||
#define USE_IPC 3
|
||||
typedef struct _USE_INFO_0 {
|
||||
LPWSTR ui0_local;
|
||||
LPWSTR ui0_remote;
|
||||
}USE_INFO_0,*PUSE_INFO_0,*LPUSE_INFO_0;
|
||||
typedef struct _USE_INFO_1 {
|
||||
LPWSTR ui1_local;
|
||||
LPWSTR ui1_remote;
|
||||
LPWSTR ui1_password;
|
||||
DWORD ui1_status;
|
||||
DWORD ui1_asg_type;
|
||||
DWORD ui1_refcount;
|
||||
DWORD ui1_usecount;
|
||||
}USE_INFO_1,*PUSE_INFO_1,*LPUSE_INFO_1;
|
||||
typedef struct _USE_INFO_2 {
|
||||
LPWSTR ui2_local;
|
||||
LPWSTR ui2_remote;
|
||||
LPWSTR ui2_password;
|
||||
DWORD ui2_status;
|
||||
DWORD ui2_asg_type;
|
||||
DWORD ui2_refcount;
|
||||
DWORD ui2_usecount;
|
||||
LPWSTR ui2_username;
|
||||
LPWSTR ui2_domainname;
|
||||
}USE_INFO_2,*PUSE_INFO_2,*LPUSE_INFO_2;
|
||||
NET_API_STATUS WINAPI NetUseAdd(LPWSTR,DWORD,PBYTE,PDWORD);
|
||||
NET_API_STATUS WINAPI NetUseDel(LPWSTR,LPWSTR,DWORD);
|
||||
NET_API_STATUS WINAPI NetUseEnum(LPWSTR,DWORD,PBYTE*,DWORD,PDWORD,PDWORD,PDWORD);
|
||||
NET_API_STATUS WINAPI NetUseGetInfo(LPWSTR,LPWSTR,DWORD,PBYTE*);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue