src/jdk.incubator.jpackage/windows/native/libapplauncher/FileAttribute.h
author herrick
Fri, 08 Nov 2019 14:53:03 -0500
branchJDK-8200758-branch
changeset 58994 b09ba68c6a19
parent 57397 src/jdk.jpackage/windows/native/libapplauncher/FileAttribute.h@89549ecec1c7
permissions -rw-r--r--
8233636 : Make jpackage an incubator and remove tool provider implementation Reviewed-by: asemenyuk, almatvee, kcr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57194
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     1
/*
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     4
 *
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    10
 *
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    15
 * accompanied this code).
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    16
 *
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    20
 *
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    23
 * questions.
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    24
 */
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    25
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    26
#ifndef FILEATTRIBUTE_H
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    27
#define FILEATTRIBUTE_H
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    28
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    29
enum FileAttribute {
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    30
    faArchive = FILE_ATTRIBUTE_ARCHIVE,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    31
    faCompressed = FILE_ATTRIBUTE_COMPRESSED,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    32
    faDevice = FILE_ATTRIBUTE_DEVICE,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    33
    faDirectory = FILE_ATTRIBUTE_DIRECTORY,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    34
    faEncrypted = FILE_ATTRIBUTE_ENCRYPTED,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    35
    faHidden = FILE_ATTRIBUTE_HIDDEN,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    36
    faNormal = FILE_ATTRIBUTE_NORMAL,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    37
    faNotContentIndexed = FILE_ATTRIBUTE_NOT_CONTENT_INDEXED,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    38
    faOffline = FILE_ATTRIBUTE_OFFLINE,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    39
    faSystem = FILE_ATTRIBUTE_SYSTEM,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    40
    faSymbolicLink = FILE_ATTRIBUTE_REPARSE_POINT,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    41
    faSparceFile = FILE_ATTRIBUTE_SPARSE_FILE,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    42
    faReadOnly = FILE_ATTRIBUTE_READONLY,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    43
    faTemporary = FILE_ATTRIBUTE_TEMPORARY,
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    44
    faVirtual = FILE_ATTRIBUTE_VIRTUAL
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    45
};
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    46
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    47
#endif // FILEATTRIBUTE_H
9d5fccd97421 8212091: Move jpackage native code under platform specific folders and files
herrick
parents:
diff changeset
    48