Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 574281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:48:50+00:00 2026-05-13T13:48:50+00:00

In my keyboard hook, each keypress gets a flag that states if it was

  • 0

In my keyboard hook, each keypress gets a flag that states if it was injected or not.
http://msdn.microsoft.com/en-us/library/ms644967(VS.85).aspx

I’ve distilled a KBDLLHOOKSTRUCT from the lParam. I can access kbd.flags.XXX. I just don’t know how to convert this 8bit flag into an if (injected) {... type conditional that I know how to use.

If one of you smart computer-science types would help me out I’d really appreciate it.

    private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)
    {
        KBDLLHOOKSTRUCT kbd = new KBDLLHOOKSTRUCT();
        Marshal.PtrToStructure(lParam, kbd);

        //if (injected) {...

Cheers!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:48:50+00:00Added an answer on May 13, 2026 at 1:48 pm

    You need to bitwise-and it with a mask. For example, the injected bit is bit 4. That’s binary 00010000, hex 0x10. So you bitwise-and it with 0x10, and see if anything’s left:

    bool isInjected = ((kbd.flags & 0x10) != 0);
    

    (Of course, as per Andrew’s answer, it would be a good idea to define a LLKHF_INJECTED constant for this rather than including the hex value directly in your code!)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using code that I found on the CodeProject.com for a low-level keyboard hook
I have an app which uses a keyboard hook procedure in a library. The
I am working on an application that installs a system wide keyboard hook. I
I am working on a c++ win32 program that involves a keyboard hook. The
In my previous question , I reported that a keyboard hook was reporting everything
I have a program that sets a global keyboard hook and handles key presses.
we're working on a .Net application that does a low level keyboard hook. When
I have an app that uses a (perfectly user-benevolent) system-wide keyboard hook for accessibility
I have added a keyboard hook for a dialog that I don't control (it
I'm creating a program that installs a keyboard hook to capture all keys and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.