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

DELTA_FILE_TYPE (Enums)
 
.

Used in Delta Compression API.

C# Definition:

    [Flags]
    enum DELTA_FILE_TYPE : long
    {
        /** Raw file type. */
        DELTA_FILE_TYPE_RAW = (0x00000001),
        /** File type for I386 Portable Executable files. */
        DELTA_FILE_TYPE_I386 = (0x00000002),
        /** File type for for IA64 Portable Executable files. */
        DELTA_FILE_TYPE_IA64 = (0x00000004),
        /** File type for AMD64 Portable Executable files. */
        DELTA_FILE_TYPE_AMD64 = (0x00000008),
        /** File type for I386 Portable Executable files with CLI4 transform. */
        DELTA_FILE_TYPE_CLI4_I386 = (0x00000010),
        /** File type for AMD64 Portable Executable files with CLI4 transform. */
        DELTA_FILE_TYPE_CLI4_AMD64 = (0x00000020),
        /** File type for ARM Portable Executable files with CLI4 transform. */
        DELTA_FILE_TYPE_CLI4_ARM = (0x00000040),
        /** File type for ARM64 Portable Executable files with CLI4 transform. */
        DELTA_FILE_TYPE_CLI4_ARM64 = (0x00000080)
    }

VB Definition:

Enum DELTA_FILE_TYPE
   TODO
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