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

PERCEIVED (Constants)
 
.
Summary

C# Constants:

[Flags]
enum PerceivedFlag
{
    ///<summary>No perceived type was found (PERCEIVED_TYPE_UNSPECIFIED).</summary>
    Undefined = 0x0000,

    ///<summary>The perceived type was determined through an association in the registry.</summary>
    Softcoded = 0x0001,

    ///<summary>The perceived type is inherently known to Windows.</summary>
    Hardcoded = 0x0002,

    ///<summary>The perceived type was determined through a codec provided with Windows.</summary>
    NativeSupport = 0x0004,

    ///<summary>The perceived type is supported by the GDI+ library.</summary>
    GdiPlus = 0x0010,

    ///<summary>The perceived type is supported by the Windows Media SDK.</summary>
    WMSDK = 0x0020,

    ///<summary>The perceived type is supported by Windows compressed folders.</summary>
    ZipFolder = 0x0040
}

VB Constants:

<Flags> _
Enum PerceivedFlag

    '''<summary>No perceived type was found (PERCEIVED_TYPE_UNSPECIFIED).</summary>
    Undefined = &h0000

    '''<summary>The perceived type was determined through an association in the registry.</summary>
    Softcoded = &h0001

    '''<summary>The perceived type is inherently known to Windows.</summary>
    Hardcoded = &h0002

    '''<summary>The perceived type was determined through a codec provided with Windows.</summary>
    NativeSupport = &h0004

    '''<summary>The perceived type is supported by the GDI+ library.</summary>
    GdiPlus = &h0010

    '''<summary>The perceived type is supported by the Windows Media SDK.</summary>
    WMSDK = &h0020

    '''<summary>The perceived type is supported by Windows compressed folders.</summary>
    ZipFolder = &h0040

End Enum

Notes:

None.

 

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