admin
base
basedrv
boot
busdrv
cluster
cmd
crts
ddk
dload
dloadhandler
efiutil
eventlog
firmware
fs
cdfs
clfs
dfs
efs
fastfat
fltsamples
hsm
lfs
mailslot
mup
npfs
ntfs
rdr2
bowser
csc
inc
record.mgr
usermode
db
lib3
reint
daytona
test
actions2.bmp
addfoldr.ico
api.c
brfcase.ico
csc_bmpu.c
csc_bmpu.h
depend.mk
dirs
dobj.c
dobj.h
download.ico
err.c
err.h
exports.c
extra.c
extra.h
fill.ico
folderop.ico
idle.ico
leather.ico
list.c
list.h
makefile.w97
merge.c
merge.h
merge.ico
merging.ico
netrack.ico
ntstuff.c
obrief.ico
pch.c
pch.h
recact.c
recact.h
recon.c
recon.h
reint.c
reint.h
reint.ico
reint.mk
reint.rc
reint.rcv
reintinc.h
repfile.ico
repfoldr.ico
resource.h
shdchk.c
sources.inc
splall.ico
splfile.ico
splfoldr.ico
strings.c
strings.h
trayidle.ico
traynoti.c
traynoti.h
ui.c
updall.ico
update.ico
upddock.ico
updfile.ico
updfoldr.ico
utils.c
utils.h
common.mk
depend.mk
dirs
makefile.w97
mydirs.joe
shhndl.mk
util
bld97.bat
common.mk
csc.doc
cscth.doc
dirs
makefile.w97
drt
inc
rdbss
rdr2kd
rxce
setup
smbrdr
wmi
checkin.sed
cue.pri
cuepri.sav
daytona.src
dirs
empty.bat
rdbss.ci
test1
remotefs
sis
smbtrsup
srv
udfs
utils
dirs
extensions.doc
fsrec
hals
headless
inc
mspatch
mvdm
ntdll
ntdllsym
ntos
ntsetup
pnp
published
qfe
remoteboot
screg
seaudit
strsafe
stublibs
subsys
testlockout
tools
urtl
wdmdrv
wdmlib
win32
wmi
wow64
xip
zlib
dirs
prerelease.inc
project.mk
com
developer
drivers
ds
enduser
inetcore
inetsrv
loc
mergedcomponents
multimedia
net
printscan
public
published
sdktools
shell
termsrv
tools
windows
dirs
makefil0
30 lines
586 B
C
30 lines
586 B
C
#ifndef __LIST_H__
|
|
#define __LIST_H__
|
|
|
|
#include "shdcom.h"
|
|
|
|
typedef struct node {
|
|
struct node *next;
|
|
LPCOPYPARAMS lpCP;
|
|
int iShadowStatus;
|
|
int iFileStatus;
|
|
unsigned int uAction;
|
|
SHADOWINFO sSI; // tHACK: too BIG!!!
|
|
WIN32_FIND_DATA sFind32Local;
|
|
WIN32_FIND_DATA sFind32Remote;
|
|
} node;
|
|
|
|
void killList(node *);
|
|
node *
|
|
insertList(
|
|
node **thisList,
|
|
LPCOPYPARAMS aNode,
|
|
LPSHADOWINFO lpSI,
|
|
LPWIN32_FIND_DATA lpFind32Local,
|
|
LPWIN32_FIND_DATA lpFind32Remote,
|
|
int iShadowStatus,
|
|
int iFileStatus,
|
|
unsigned int uAction);
|
|
|
|
#endif
|