Re: ntoskrnl.exe: Implemented IoCreateSymbolicLink

2007-05-17 Thread Alexandre Julliard
Vitaliy Margolen <[EMAIL PROTECTED]> writes: > How are you planning on removing them if you don't keep a handle to this > symlink? Yes, obviously the handle will need to be stored to remove it, that's why there's a FIXME. Since it will be removed automatically on driver unload, it's not the most

Re: ntoskrnl.exe: Implemented IoCreateSymbolicLink

2007-05-16 Thread Vitaliy Margolen
Alexandre Julliard wrote: > +attr.Attributes = OBJ_CASE_INSENSITIVE | OBJ_OPENIF; > +attr.SecurityDescriptor = NULL; > +attr.SecurityQualityOfService = NULL; > + > +TRACE( "%s -> %s\n", debugstr_us(name), debugstr_us(target) ); > +/* FIXME: store handle somew