Zydis
master
|
Defines the immutable and storage-efficient ZydisShortString
struct, which is used to store strings in the generated tables.
More...
#include <Zycore/Defines.h>
#include <Zycore/Types.h>
Go to the source code of this file.
Data Structures | |
struct | ZydisShortString_ |
Defines the ZydisShortString struct. More... | |
Macros | |
#define | ZYDIS_MAKE_SHORTSTRING(string) { string, sizeof(string) - 1 } |
Declares a ZydisShortString from a static C-style string. More... | |
Typedefs | |
typedef struct ZydisShortString_ | ZydisShortString |
Defines the ZydisShortString struct. More... | |
Defines the immutable and storage-efficient ZydisShortString
struct, which is used to store strings in the generated tables.
#define ZYDIS_MAKE_SHORTSTRING | ( | string | ) | { string, sizeof(string) - 1 } |
Declares a ZydisShortString
from a static C-style string.
string | The C-string constant. |
typedef struct ZydisShortString_ ZydisShortString |
Defines the ZydisShortString
struct.
This compact struct is mainly used for internal string-tables to save up some bytes.
All fields in this struct should be considered as "private". Any changes may lead to unexpected behavior.