I have in C++ used the message parameter lParam to see the result of an operation.
example :
byte status = (byte) lParam
if (status == ANSWER_ACCEPTED)
etc..
Now I would like to do the simalar in C#. Are there any method I can use or do I have do wrap the win32 ??
example :
byte status = (byte) lParam
if (status == ANSWER_ACCEPTED)
etc..
Now I would like to do the simalar in C#. Are there any method I can use or do I have do wrap the win32 ??