git://git.openafs.org
/
openafs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
windows-torture-test-20060625
[openafs.git]
/
src
/
WINNT
/
tests
/
torture
/
include
/
ResolveLocker.h
1
// Description: public header for the locker library
2
3
#ifndef LOCKER_H
4
#define LOCKER_H
5
6
typedef struct {
7
int OutputHesResolve;
8
int MountType;
9
int UseUnc;
10
int useHostname;
11
int AuthReq;
12
int UnAuth;
13
int addtoPath;
14
int deletefromPath;
15
int ForceDismount;
16
int OutputToScreen;
17
int SwitchCount;
18
char Host[512];
19
char PassWord[128];
20
char UserName[128];
21
char DiskDrive[128];
22
char Locker[512];
23
char SubMount[64];
24
char type[16];
25
char FileType[8];
26
} USER_OPTIONS;
27
28
int attach(USER_OPTIONS attachOption, int addtoPath, int addtoFront, char *appName);
29
int detach(USER_OPTIONS detachOption, int DeleteFromPath, char *appName);
30
31
#endif