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

SendMessageTimeoutFlags (Enums)
 
.
Summary

C# Definition:

[Flags]
enum SendMessageTimeoutFlags : uint
[Flags] enum SendMessageTimeoutFlags : uint
{
    SMTO_NORMAL             = 0x0,
    SMTO_BLOCK              = 0x1,
    SMTO_ABORTIFHUNG        = 0x2,
    SMTO_NOTIMEOUTIFNOTHUNG = 0x8,
    SMTO_ERRORONEXIT = 0x20
    SMTO_NORMAL         = 0x0000,
    SMTO_BLOCK          = 0x0001,
    SMTO_ABORTIFHUNG    = 0x0002,
    SMTO_NOTIMEOUTIFNOTHUNG = 0x0008
}

VB.Net Definition:

<Flags()> _
Public Enum SendMessageTimeoutFlags
    SMTO_NORMAL             = 0
    SMTO_BLOCK              = 1
    SMTO_ABORTIFHUNG        = 2
    SMTO_NOTIMEOUTIFNOTHUNG = 8
    SMTO_ERRORONEXIT = 32
     SMTO_NORMAL = 0
     SMTO_BLOCK = 1
     SMTO_ABORTIFHUNG = 2
     SMTO_NOTIMEOUTIFNOTHUNG = 8
End Enum

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

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

Select "Edit This Page" on the right hand toolbar and edit it!

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