CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 15

Threaded View

  1. #1
    Join Date
    Jul 2007
    Location
    somwhere nearby
    Posts
    150

    helo on converting some c++ codes into assembly

    hello all
    im seeking help on converting two lines of c++ codes into its windows assembly counter parts
    any help is greatly appreciated
    Code:
          GetKeyboardState((LPBYTE)&keyState); 
          if( (bState && !(keyState[VK_CAPITAL] & 1))  ||  (!bState && (keyState[VK_CAPITAL] & 1)) )
    Thanks in advance
    Last edited by Master.; May 26th, 2011 at 11:45 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured