MEMORY_BASIC_INFORMATION構造体

宣言文
Type MEMORY_BASIC_INFORMATION
    BaseAddress As Long             領域のベースアドレス
    AllocationBase As Long          確保された領域のベースアドレス
    AllocationProtect As Long       保護属性の初期値
    RegionSize As Long              領域のサイズ(バイト数)
    State As Long                   領域の設定状況(コミット、予約など)
    Protect As Long                 アクセス条件
    Type As Long                    ページのタイプ
End Type
Structure MEMORY_BASIC_INFORMATION
    BaseAddress As Integer             領域のベースアドレス
    AllocationBase As Integer          確保された領域のベースアドレス
    AllocationProtect As Integer       保護属性の初期値
    RegionSize As Integer              領域のサイズ(バイト数)
    State As Integer                   領域の設定状況(コミット、予約など)
    Protect As Integer                 アクセス条件
    Structure As Integer                    ページのタイプ
End Structure