ホーム › Security.Authentication.Identity › SECPKG_EVENT_NOTIFY
SECPKG_EVENT_NOTIFY
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| EventClass | DWORD | 4 | +0 | +0 | 通知イベントの分類コードを示す。どの種類の通知かを判別する。 |
| Reserved | DWORD | 4 | +4 | +4 | 将来の拡張用に予約された領域。通常はゼロとなる。 |
| EventDataSize | DWORD | 4 | +8 | +8 | EventDataが指すデータのバイト数を示す。 |
| EventData | void* | 8/4 | +16 | +12 | イベント固有データへのポインタ。NULL可。 |
| PackageParameter | void* | 8/4 | +24 | +16 | パッケージ固有の追加パラメータへのポインタ。NULL可。 |
各言語での定義
#include <windows.h>
// SECPKG_EVENT_NOTIFY (x64 32 / x86 20 バイト)
typedef struct SECPKG_EVENT_NOTIFY {
DWORD EventClass;
DWORD Reserved;
DWORD EventDataSize;
void* EventData;
void* PackageParameter;
} SECPKG_EVENT_NOTIFY;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct SECPKG_EVENT_NOTIFY
{
public uint EventClass;
public uint Reserved;
public uint EventDataSize;
public IntPtr EventData;
public IntPtr PackageParameter;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure SECPKG_EVENT_NOTIFY
Public EventClass As UInteger
Public Reserved As UInteger
Public EventDataSize As UInteger
Public EventData As IntPtr
Public PackageParameter As IntPtr
End Structureimport ctypes
from ctypes import wintypes
class SECPKG_EVENT_NOTIFY(ctypes.Structure):
_fields_ = [
("EventClass", wintypes.DWORD),
("Reserved", wintypes.DWORD),
("EventDataSize", wintypes.DWORD),
("EventData", ctypes.c_void_p),
("PackageParameter", ctypes.c_void_p),
]#[repr(C)]
pub struct SECPKG_EVENT_NOTIFY {
pub EventClass: u32,
pub Reserved: u32,
pub EventDataSize: u32,
pub EventData: *mut core::ffi::c_void,
pub PackageParameter: *mut core::ffi::c_void,
}import "golang.org/x/sys/windows"
type SECPKG_EVENT_NOTIFY struct {
EventClass uint32
Reserved uint32
EventDataSize uint32
EventData uintptr
PackageParameter uintptr
}type
SECPKG_EVENT_NOTIFY = record
EventClass: DWORD;
Reserved: DWORD;
EventDataSize: DWORD;
EventData: Pointer;
PackageParameter: Pointer;
end;const SECPKG_EVENT_NOTIFY = extern struct {
EventClass: u32,
Reserved: u32,
EventDataSize: u32,
EventData: ?*anyopaque,
PackageParameter: ?*anyopaque,
};type
SECPKG_EVENT_NOTIFY {.bycopy.} = object
EventClass: uint32
Reserved: uint32
EventDataSize: uint32
EventData: pointer
PackageParameter: pointerstruct SECPKG_EVENT_NOTIFY
{
uint EventClass;
uint Reserved;
uint EventDataSize;
void* EventData;
void* PackageParameter;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x86 レイアウト)
; SECPKG_EVENT_NOTIFY サイズ: 20 バイト(x86)
dim st, 5 ; 4byte整数×5(構造体サイズ 20 / 4 切り上げ)
; EventClass : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; Reserved : DWORD (+4, 4byte) st.1 = 値 / 値 = st.1 (lpoke/lpeek も可)
; EventDataSize : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; EventData : void* (+12, 4byte) st.3 = 値 / 値 = st.3 (lpoke/lpeek も可)
; PackageParameter : void* (+16, 4byte) st.4 = 値 / 値 = st.4 (lpoke/lpeek も可)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; SECPKG_EVENT_NOTIFY サイズ: 32 バイト(x64)
dim st, 8 ; 4byte整数×8(構造体サイズ 32 / 4 切り上げ)
; EventClass : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; Reserved : DWORD (+4, 4byte) st.1 = 値 / 値 = st.1 (lpoke/lpeek も可)
; EventDataSize : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; EventData : void* (+16, 8byte) qpoke st,16,値 / qpeek(st,16) ※IronHSPのみ。3.7/3.8は lpoke st,16,下位 : lpoke st,20,上位
; PackageParameter : void* (+24, 8byte) qpoke st,24,値 / qpeek(st,24) ※IronHSPのみ。3.7/3.8は lpoke st,24,下位 : lpoke st,28,上位
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global SECPKG_EVENT_NOTIFY
#field int EventClass
#field int Reserved
#field int EventDataSize
#field intptr EventData
#field intptr PackageParameter
#endstruct
stdim st, SECPKG_EVENT_NOTIFY ; NSTRUCT 変数を確保
st->EventClass = 100
mes "EventClass=" + st->EventClass