vote up 0 vote down star

I'm writing a DLL which a java program uses to call the WinAPI in various ways. I want to throw proper exceptions back to java but I need a nicely formated WinAPI error not just the int that get's returned from GetLastError(). I'm sure there's a nice way to do it.

flag

1 Answer

vote up 5 vote down check

Use "FormatMessage"; you can pass in the error code as the 3rd parameter, and even have FormatMessage allocate the space for you.

link|flag
Sounds like just the thing, thanks! – Benj Oct 23 at 13:31
Yup. That's how I do it. There's some example code here: codeproject.com/KB/tips/… – T.E.D. Oct 23 at 13:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.