Skip navigation links
JNA API 4.4.0
com.sun.jna.platform.win32

Class WinCrypt.CRYPTPROTECT_PROMPTSTRUCT

  • Enclosing interface:
    WinCrypt


    public static class WinCrypt.CRYPTPROTECT_PROMPTSTRUCT
    extends Structure
    The CRYPTPROTECT_PROMPTSTRUCT structure provides the text of a prompt and information about when and where that prompt is to be displayed when using the CryptProtectData and CryptUnprotectData functions.
    • Field Detail

      • cbSize

        public int cbSize
        Size of this structure in bytes.
      • dwPromptFlags

        public int dwPromptFlags
        DWORD flags that indicate when prompts to the user are to be displayed.
      • hwndApp

        public WinDef.HWND hwndApp
        Window handle to the parent window.
      • szPrompt

        public String szPrompt
        A string containing the text of a prompt to be displayed.
    • Constructor Detail

      • CRYPTPROTECT_PROMPTSTRUCT

        public CRYPTPROTECT_PROMPTSTRUCT()
      • CRYPTPROTECT_PROMPTSTRUCT

        public CRYPTPROTECT_PROMPTSTRUCT(Pointer memory)
    • Method Detail

      • getFieldOrder

        protected List<String> getFieldOrder()
        Description copied from class: Structure
        Return this Structure's field names in their proper order. For example,
        
         protected List getFieldOrder() {
             return Arrays.asList(new String[] { ... });
         }
         
        IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.
        
         protected List getFieldOrder() {
             List fields = new ArrayList(super.getFieldOrder());
             fields.addAll(Arrays.asList(new String[] { ... }));
             return fields;
         }
         
        Field order must be explicitly indicated, since the field order as returned by Class.getFields() is not guaranteed to be predictable.
        Specified by:
        getFieldOrder in class Structure
        Returns:
        ordered list of field names
JNA API 4.4.0

Copyright © 2007-2016 Timothy Wall. All Rights Reserved.