/* Copyright (c) 2007 Thomas Boerkel, All Rights Reserved Disclaimer: =========== This code is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. */ package hudson.util.jna; /** * * @author TB */ public interface WINNT { int DELETE = 0x00010000; int READ_CONTROL = 0x00020000; int WRITE_DAC = 0x00040000; int WRITE_OWNER = 0x00080000; int SYNCHRONIZE = 0x00100000; int STANDARD_RIGHTS_REQUIRED = 0x000F0000; int STANDARD_RIGHTS_READ = READ_CONTROL; int STANDARD_RIGHTS_WRITE = READ_CONTROL; int STANDARD_RIGHTS_EXECUTE = READ_CONTROL; int STANDARD_RIGHTS_ALL = 0x001F0000; int SPECIFIC_RIGHTS_ALL = 0x0000FFFF; int GENERIC_EXECUTE = 0x20000000; int SERVICE_WIN32_OWN_PROCESS = 0x00000010; int KEY_QUERY_VALUE = 0x0001; int KEY_SET_VALUE = 0x0002; int KEY_CREATE_SUB_KEY = 0x0004; int KEY_ENUMERATE_SUB_KEYS = 0x0008; int KEY_NOTIFY = 0x0010; int KEY_CREATE_LINK = 0x0020; int KEY_READ = ((STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY) & (~SYNCHRONIZE)); int KEY_WRITE = ((STANDARD_RIGHTS_WRITE | KEY_SET_VALUE | KEY_CREATE_SUB_KEY) & (~SYNCHRONIZE)); int REG_NONE = 0; // No value type int REG_SZ = 1; // Unicode nul terminated string int REG_EXPAND_SZ = 2; // Unicode nul terminated string // (with environment variable references) int REG_BINARY = 3; // Free form binary int REG_DWORD = 4; // 32-bit number int REG_DWORD_LITTLE_ENDIAN = 4; // 32-bit number (same as REG_DWORD) int REG_DWORD_BIG_ENDIAN = 5; // 32-bit number int REG_LINK = 6; // Symbolic Link (unicode) int REG_MULTI_SZ = 7; // Multiple Unicode strings int REG_RESOURCE_LIST = 8; // Resource list in the resource map int REG_FULL_RESOURCE_DESCRIPTOR = 9; // Resource list in the hardware description int REG_RESOURCE_REQUIREMENTS_LIST = 10; int REG_OPTION_RESERVED = 0x00000000; // Parameter is reserved int REG_OPTION_NON_VOLATILE = 0x00000000; // Key is preserved // when system is rebooted int REG_OPTION_VOLATILE = 0x00000001; // Key is not preserved // when system is rebooted int REG_OPTION_CREATE_LINK = 0x00000002; // Created key is a // symbolic link int REG_OPTION_BACKUP_RESTORE = 0x00000004; // open for backup or restore // special access rules // privilege required int REG_OPTION_OPEN_LINK = 0x00000008; // Open symbolic link }