Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Win32Consts (Structures)
 
.
Summary
A collection of constants used throughout the Win32 API.

Have a look at SendInput for an example of where these constants are used.

C# Definition:

public class Win32Consts
{
   // For use with the INPUT struct, see SendInput for an example
   public const int INPUT_MOUSE     = 0;
   public const int INPUT_KEYBOARD  = 1;
   public const int INPUT_HARDWARE  = 2;
}    

VB Definition:

Public Enum Win32Consts As Integer

    Public Enum Win32Consts As Integer
    ' For use with the INPUT struct, see SendInput for an example
    INPUT_MOUSE = 0
    INPUT_KEYBOARD = 1
    INPUT_HARDWARE = 2

End Enum

    End Enum

User-Defined Field Types:

None.

Notes:

None.

Documentation
Win32Consts on MSDN

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions