CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: peterchen

Search: Search took 0.48 seconds.

  1. Replies
    5
    Views
    7,888

    Re: WndProc Return value

    The return value depends on the message you handle. Check the online documentation for the message. With many messages, the return value is ignored; others require a true/false; (e.g....
  2. Replies
    5
    Views
    7,888

    Re: LRESULT CALLBACK

    LRESULT & CALLBACK are two macros to hide platform specifics.

    LRESULT is the return value - actually a long.

    CALLBACK is the calling convention for functions that will be called from inside a...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured