System.TMinimumBlockAlignment

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMinimumBlockAlignment = (mba8Byte, mba16Byte);

C++

enum DECLSPEC_DENUM TMinimumBlockAlignment : unsigned char { mba8Byte, mba16Byte };

Properties

Type Visibility Source Unit Parent
enum public
System.pas
System.hpp
System System

Description

TMinimumBlockAlignment defines the mimimum byte alignment for memory block allocation.

The TMinimumBlockAlignment type defines either 8-byte (mba8Byte) or 16-byte (mba16Byte) block alignments; namely, the memory address is divisible exactly by 8 or 16 respectively.

See Also