XInput - missing constant? ERROR_SUCCESS #618
-
I'm setting up XInput. And I should see a constant ERROR_SUCCESS. I have the following using...
And I've also put this line in NativeMethods...
Is it missing or is the normal usage replaced with something else? Edit: I've read somewhere that ERROR_SUCCESS = 0, where are these values defined? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
With
The constant is still emitted, but it's as an enum value within the |
Beta Was this translation helpful? Give feedback.
With
ERROR_SUCCESS
a warning is produced by the build:The constant is still emitted, but it's as an enum value within the
WIN32_ERROR
enum. That's where you'll find it.