--- Scott Schoen <[EMAIL PROTECTED]> wrote: > I'm using the FileStreams library to open a .pdb file > that I've generated using a pdb converter called makedoc. > When I attempt to open the file using FileOpen() I get > error 0x1611: fileErrorInvalidDescriptor. This strikes me > as an odd error to get ...
0x1611 is fileErrNotStream. You are probably confused because the headers mix hex and decimal, e.g., #define fileErrNotStream (fileErrorClass | 17) fileErrorClass is 0x1600 and 17 decimal is 0x0011, so that's 0x1611 __________________________________________________ Do You Yahoo!? Yahoo! Sports - sign up for Fantasy Baseball http://sports.yahoo.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
