LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
DEX/enums.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_DEX_ENUMS_H
17#define LIEF_DEX_ENUMS_H
18
19namespace LIEF {
20namespace DEX {
21
44
45
49 METHOD_DIRECT = 0x02, // Deprecated
50
55};
56
57static const ACCESS_FLAGS access_flags_list[] = {
78};
79
80}
81}
82#endif
Definition DEX/Class.hpp:30
ACCESS_FLAGS
Definition DEX/enums.hpp:22
@ ACC_FINAL
Definition DEX/enums.hpp:28
@ ACC_STATIC
Definition DEX/enums.hpp:27
@ ACC_UNKNOWN
Definition DEX/enums.hpp:23
@ ACC_DECLARED_SYNCHRONIZED
Definition DEX/enums.hpp:42
@ ACC_SYNCHRONIZED
Definition DEX/enums.hpp:29
@ ACC_CONSTRUCTOR
Definition DEX/enums.hpp:41
@ ACC_ENUM
Definition DEX/enums.hpp:40
@ ACC_VOLATILE
Definition DEX/enums.hpp:30
@ ACC_VARARGS
Definition DEX/enums.hpp:33
@ ACC_TRANSIENT
Definition DEX/enums.hpp:32
@ ACC_STRICT
Definition DEX/enums.hpp:37
@ ACC_PUBLIC
Definition DEX/enums.hpp:24
@ ACC_ANNOTATION
Definition DEX/enums.hpp:39
@ ACC_ABSTRACT
Definition DEX/enums.hpp:36
@ ACC_BRIDGE
Definition DEX/enums.hpp:31
@ ACC_PROTECTED
Definition DEX/enums.hpp:26
@ ACC_INTERFACE
Definition DEX/enums.hpp:35
@ ACC_NATIVE
Definition DEX/enums.hpp:34
@ ACC_SYNTHETIC
Definition DEX/enums.hpp:38
@ ACC_PRIVATE
Definition DEX/enums.hpp:25
METHOD_TYPES
Definition DEX/enums.hpp:46
@ METHOD_EXTERN
Definition DEX/enums.hpp:51
@ METHOD_STATIC
Definition DEX/enums.hpp:53
@ METHOD_UNKNOWN
Definition DEX/enums.hpp:47
@ METHOD_CTOR
Definition DEX/enums.hpp:52
@ METHOD_DIRECT
Definition DEX/enums.hpp:49
@ METHOD_VIRTUAL
Definition DEX/enums.hpp:48
@ METHOD_STATIC_CTOR
Definition DEX/enums.hpp:54
LIEF namespace.
Definition Abstract/Binary.hpp:36