Win32 API 日本語リファレンス
ホームSystem.ApplicationInstallationAndServicing › MsiSummaryInfoGetPropertyA

MsiSummaryInfoGetPropertyA

関数
サマリ情報の指定プロパティの型と値を取得する。
DLLmsi.dll文字セットANSI (-A)呼出規約winapi対応OSwindows8.0

シグネチャ

// msi.dll  (ANSI / -A)
#include <windows.h>

DWORD MsiSummaryInfoGetPropertyA(
    MSIHANDLE hSummaryInfo,
    DWORD uiProperty,
    DWORD* puiDataType,
    INT* piValue,
    FILETIME* pftValue,   // optional
    LPSTR szValueBuf,   // optional
    DWORD* pcchValueBuf   // optional
);

パラメーター

名前方向
hSummaryInfoMSIHANDLEin
uiPropertyDWORDin
puiDataTypeDWORD*out
piValueINT*out
pftValueFILETIME*outoptional
szValueBufLPSTRoutoptional
pcchValueBufDWORD*inoutoptional

戻り値の型: DWORD

各言語での呼び出し定義

// msi.dll  (ANSI / -A)
#include <windows.h>

DWORD MsiSummaryInfoGetPropertyA(
    MSIHANDLE hSummaryInfo,
    DWORD uiProperty,
    DWORD* puiDataType,
    INT* piValue,
    FILETIME* pftValue,   // optional
    LPSTR szValueBuf,   // optional
    DWORD* pcchValueBuf   // optional
);
[DllImport("msi.dll", CharSet = CharSet.Ansi, ExactSpelling = true)]
static extern uint MsiSummaryInfoGetPropertyA(
    uint hSummaryInfo,   // MSIHANDLE
    uint uiProperty,   // DWORD
    out uint puiDataType,   // DWORD* out
    out int piValue,   // INT* out
    IntPtr pftValue,   // FILETIME* optional, out
    [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder szValueBuf,   // LPSTR optional, out
    IntPtr pcchValueBuf   // DWORD* optional, in/out
);
<DllImport("msi.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)>
Public Shared Function MsiSummaryInfoGetPropertyA(
    hSummaryInfo As UInteger,   ' MSIHANDLE
    uiProperty As UInteger,   ' DWORD
    <Out> ByRef puiDataType As UInteger,   ' DWORD* out
    <Out> ByRef piValue As Integer,   ' INT* out
    pftValue As IntPtr,   ' FILETIME* optional, out
    <MarshalAs(UnmanagedType.LPStr)> szValueBuf As System.Text.StringBuilder,   ' LPSTR optional, out
    pcchValueBuf As IntPtr   ' DWORD* optional, in/out
) As UInteger
End Function
' hSummaryInfo : MSIHANDLE
' uiProperty : DWORD
' puiDataType : DWORD* out
' piValue : INT* out
' pftValue : FILETIME* optional, out
' szValueBuf : LPSTR optional, out
' pcchValueBuf : DWORD* optional, in/out
Declare PtrSafe Function MsiSummaryInfoGetPropertyA Lib "msi" ( _
    ByVal hSummaryInfo As Long, _
    ByVal uiProperty As Long, _
    ByRef puiDataType As Long, _
    ByRef piValue As Long, _
    ByVal pftValue As LongPtr, _
    ByVal szValueBuf As String, _
    ByVal pcchValueBuf As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

MsiSummaryInfoGetPropertyA = ctypes.windll.msi.MsiSummaryInfoGetPropertyA
MsiSummaryInfoGetPropertyA.restype = wintypes.DWORD
MsiSummaryInfoGetPropertyA.argtypes = [
    wintypes.DWORD,  # hSummaryInfo : MSIHANDLE
    wintypes.DWORD,  # uiProperty : DWORD
    ctypes.POINTER(wintypes.DWORD),  # puiDataType : DWORD* out
    ctypes.POINTER(ctypes.c_int),  # piValue : INT* out
    ctypes.c_void_p,  # pftValue : FILETIME* optional, out
    wintypes.LPSTR,  # szValueBuf : LPSTR optional, out
    ctypes.POINTER(wintypes.DWORD),  # pcchValueBuf : DWORD* optional, in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('msi.dll')
MsiSummaryInfoGetPropertyA = Fiddle::Function.new(
  lib['MsiSummaryInfoGetPropertyA'],
  [
    -Fiddle::TYPE_INT,  # hSummaryInfo : MSIHANDLE
    -Fiddle::TYPE_INT,  # uiProperty : DWORD
    Fiddle::TYPE_VOIDP,  # puiDataType : DWORD* out
    Fiddle::TYPE_VOIDP,  # piValue : INT* out
    Fiddle::TYPE_VOIDP,  # pftValue : FILETIME* optional, out
    Fiddle::TYPE_VOIDP,  # szValueBuf : LPSTR optional, out
    Fiddle::TYPE_VOIDP,  # pcchValueBuf : DWORD* optional, in/out
  ],
  -Fiddle::TYPE_INT)
#[link(name = "msi")]
extern "system" {
    fn MsiSummaryInfoGetPropertyA(
        hSummaryInfo: u32,  // MSIHANDLE
        uiProperty: u32,  // DWORD
        puiDataType: *mut u32,  // DWORD* out
        piValue: *mut i32,  // INT* out
        pftValue: *mut FILETIME,  // FILETIME* optional, out
        szValueBuf: *mut u8,  // LPSTR optional, out
        pcchValueBuf: *mut u32  // DWORD* optional, in/out
    ) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("msi.dll", CharSet = CharSet.Ansi)]
public static extern uint MsiSummaryInfoGetPropertyA(uint hSummaryInfo, uint uiProperty, out uint puiDataType, out int piValue, IntPtr pftValue, [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder szValueBuf, IntPtr pcchValueBuf);
"@
$api = Add-Type -MemberDefinition $sig -Name 'msi_MsiSummaryInfoGetPropertyA' -Namespace Win32 -PassThru
# $api::MsiSummaryInfoGetPropertyA(hSummaryInfo, uiProperty, puiDataType, piValue, pftValue, szValueBuf, pcchValueBuf)
#uselib "msi.dll"
#func global MsiSummaryInfoGetPropertyA "MsiSummaryInfoGetPropertyA" sptr, sptr, sptr, sptr, sptr, sptr, sptr
; MsiSummaryInfoGetPropertyA hSummaryInfo, uiProperty, varptr(puiDataType), varptr(piValue), varptr(pftValue), varptr(szValueBuf), varptr(pcchValueBuf)   ; 戻り値は stat
; hSummaryInfo : MSIHANDLE -> "sptr"
; uiProperty : DWORD -> "sptr"
; puiDataType : DWORD* out -> "sptr"
; piValue : INT* out -> "sptr"
; pftValue : FILETIME* optional, out -> "sptr"
; szValueBuf : LPSTR optional, out -> "sptr"
; pcchValueBuf : DWORD* optional, in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "msi.dll"
#cfunc global MsiSummaryInfoGetPropertyA "MsiSummaryInfoGetPropertyA" int, int, var, var, var, var, var
; res = MsiSummaryInfoGetPropertyA(hSummaryInfo, uiProperty, puiDataType, piValue, pftValue, szValueBuf, pcchValueBuf)
; hSummaryInfo : MSIHANDLE -> "int"
; uiProperty : DWORD -> "int"
; puiDataType : DWORD* out -> "var"
; piValue : INT* out -> "var"
; pftValue : FILETIME* optional, out -> "var"
; szValueBuf : LPSTR optional, out -> "var"
; pcchValueBuf : DWORD* optional, in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; DWORD MsiSummaryInfoGetPropertyA(MSIHANDLE hSummaryInfo, DWORD uiProperty, DWORD* puiDataType, INT* piValue, FILETIME* pftValue, LPSTR szValueBuf, DWORD* pcchValueBuf)
#uselib "msi.dll"
#cfunc global MsiSummaryInfoGetPropertyA "MsiSummaryInfoGetPropertyA" int, int, var, var, var, var, var
; res = MsiSummaryInfoGetPropertyA(hSummaryInfo, uiProperty, puiDataType, piValue, pftValue, szValueBuf, pcchValueBuf)
; hSummaryInfo : MSIHANDLE -> "int"
; uiProperty : DWORD -> "int"
; puiDataType : DWORD* out -> "var"
; piValue : INT* out -> "var"
; pftValue : FILETIME* optional, out -> "var"
; szValueBuf : LPSTR optional, out -> "var"
; pcchValueBuf : DWORD* optional, in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	msi = windows.NewLazySystemDLL("msi.dll")
	procMsiSummaryInfoGetPropertyA = msi.NewProc("MsiSummaryInfoGetPropertyA")
)

// hSummaryInfo (MSIHANDLE), uiProperty (DWORD), puiDataType (DWORD* out), piValue (INT* out), pftValue (FILETIME* optional, out), szValueBuf (LPSTR optional, out), pcchValueBuf (DWORD* optional, in/out)
r1, _, err := procMsiSummaryInfoGetPropertyA.Call(
	uintptr(hSummaryInfo),
	uintptr(uiProperty),
	uintptr(puiDataType),
	uintptr(piValue),
	uintptr(pftValue),
	uintptr(szValueBuf),
	uintptr(pcchValueBuf),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // DWORD
function MsiSummaryInfoGetPropertyA(
  hSummaryInfo: DWORD;   // MSIHANDLE
  uiProperty: DWORD;   // DWORD
  puiDataType: Pointer;   // DWORD* out
  piValue: Pointer;   // INT* out
  pftValue: Pointer;   // FILETIME* optional, out
  szValueBuf: PAnsiChar;   // LPSTR optional, out
  pcchValueBuf: Pointer   // DWORD* optional, in/out
): DWORD; stdcall;
  external 'msi.dll' name 'MsiSummaryInfoGetPropertyA';
result := DllCall("msi\MsiSummaryInfoGetPropertyA"
    , "UInt", hSummaryInfo   ; MSIHANDLE
    , "UInt", uiProperty   ; DWORD
    , "Ptr", puiDataType   ; DWORD* out
    , "Ptr", piValue   ; INT* out
    , "Ptr", pftValue   ; FILETIME* optional, out
    , "Ptr", szValueBuf   ; LPSTR optional, out
    , "Ptr", pcchValueBuf   ; DWORD* optional, in/out
    , "UInt")   ; return: DWORD
●MsiSummaryInfoGetPropertyA(hSummaryInfo, uiProperty, puiDataType, piValue, pftValue, szValueBuf, pcchValueBuf) = DLL("msi.dll", "dword MsiSummaryInfoGetPropertyA(dword, dword, void*, void*, void*, char*, void*)")
# 呼び出し: MsiSummaryInfoGetPropertyA(hSummaryInfo, uiProperty, puiDataType, piValue, pftValue, szValueBuf, pcchValueBuf)
# hSummaryInfo : MSIHANDLE -> "dword"
# uiProperty : DWORD -> "dword"
# puiDataType : DWORD* out -> "void*"
# piValue : INT* out -> "void*"
# pftValue : FILETIME* optional, out -> "void*"
# szValueBuf : LPSTR optional, out -> "char*"
# pcchValueBuf : DWORD* optional, in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。