Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

enter image description here

There is no return value of SendMessage, how could I view the return value of SendMessage while debugging, without:
1.assign a temporary variable.
2.use EAX.

Thanks.

share|improve this question
this problem is nonsense, since there are already two easy solutions. – Jichao Mar 4 at 8:24

1 Answer

In vb.net you could do something like:

#if DEBUG then
   debug.print SendMessage(...)
#else
   SendMessage(...)
#end if

I think in C, it's #ifdef, but it's been a while since I've coded in C.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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