On Fri, May 31, 2002, Adam McDaniel wrote: > Any ideas on what 10761 is, or better yet, how to find out on your > own? :)
Convert the value to hex, find the error class in ErrorBase.h, and then look up the actual error code in the corresponding header file. E.g. 10761 = 0x2A09. I know that 0x2A00 is from the VFS error class, but otherwise you can find that info in ErrorBase.h. A quick look in VFSMgr.h reveals that (0x2A00 | 9) = vfsErrVolumeBadRef. /Mike
