A quick one, where do I find a list of the err_codes? I have had a look in the documentation and I was expecting to find a table of them, but I couldn't locate one.
Thanks - RJH
A quick one, where do I find a list of the err_codes? I have had a look in the documentation and I was expecting to find a table of them, but I couldn't locate one.
Thanks - RJH
There isn't one - but it's a very good idea to make yourself one which maps hex error code to the possible (often more than one) error code. It will save lots of time. Remember they do change a bit from release to release so you do have to keep the list up to date.
unfortunately I don't have my cheat sheet on me because I'm on the way home. I originally made it by just copy/pasting error codes from the 5 or 6 .h files in the SDK and then sorting them by error number.
If you know what function you called to get the error code you can look that up in the header file, usually tells you what error codes it can return.
unfortunately I don't have my cheat sheet on me because I'm on the way home. I originally made it by just copy/pasting error codes from the 5 or 6 .h files in the SDK and then sorting them by error number.
If you know what function you called to get the error code you can look that up in the header file, usually tells you what error codes it can return.