I'm currently a Computer Systems Engineering PhDPhilosophiæ Doctor candidate at the University of Auckland. My supervisors are Dr Partha Roop and Dr Morteza Biglari-Abhari. I am a current (beginning 2009) recipient of the University of Auckland Doctoral Scholarship. I gained my BE(Hons) with First Class Honours from the same UniversityThe University of Auckland..
I was born in Hong Kong but I now live in Auckland, New Zealand. You may contact me by sending an email to eyip002@aucklanduni.ac.nz
__inline BOOL
SearchOneDirectory(
IN LPSTR Directory,
IN LPSTR FileToFind,
IN LPSTR SourceFullName,
IN LPSTR SourceFilePart,
OUT PBOOL FoundInTree
)
{
//
// This was way too slow. Just say we didn't find the file.
//
*FoundInTree = FALSE;
return(TRUE);
}
Note: This was found in the 2004 leaked Windows sources
(link).