ホーム › System.ApplicationInstallationAndServicing › MsiGetProductPropertyA
MsiGetProductPropertyA
関数開いた製品ハンドルから指定プロパティの値を取得する。
シグネチャ
// msi.dll (ANSI / -A)
#include <windows.h>
DWORD MsiGetProductPropertyA(
MSIHANDLE hProduct,
LPCSTR szProperty,
LPSTR lpValueBuf, // optional
DWORD* pcchValueBuf // optional
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| hProduct | MSIHANDLE | in |
| szProperty | LPCSTR | in |
| lpValueBuf | LPSTR | outoptional |
| pcchValueBuf | DWORD* | inoutoptional |
戻り値の型: DWORD
各言語での呼び出し定義
// msi.dll (ANSI / -A)
#include <windows.h>
DWORD MsiGetProductPropertyA(
MSIHANDLE hProduct,
LPCSTR szProperty,
LPSTR lpValueBuf, // optional
DWORD* pcchValueBuf // optional
);[DllImport("msi.dll", CharSet = CharSet.Ansi, ExactSpelling = true)]
static extern uint MsiGetProductPropertyA(
uint hProduct, // MSIHANDLE
[MarshalAs(UnmanagedType.LPStr)] string szProperty, // LPCSTR
[MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpValueBuf, // LPSTR optional, out
IntPtr pcchValueBuf // DWORD* optional, in/out
);<DllImport("msi.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)>
Public Shared Function MsiGetProductPropertyA(
hProduct As UInteger, ' MSIHANDLE
<MarshalAs(UnmanagedType.LPStr)> szProperty As String, ' LPCSTR
<MarshalAs(UnmanagedType.LPStr)> lpValueBuf As System.Text.StringBuilder, ' LPSTR optional, out
pcchValueBuf As IntPtr ' DWORD* optional, in/out
) As UInteger
End Function' hProduct : MSIHANDLE
' szProperty : LPCSTR
' lpValueBuf : LPSTR optional, out
' pcchValueBuf : DWORD* optional, in/out
Declare PtrSafe Function MsiGetProductPropertyA Lib "msi" ( _
ByVal hProduct As Long, _
ByVal szProperty As String, _
ByVal lpValueBuf 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
MsiGetProductPropertyA = ctypes.windll.msi.MsiGetProductPropertyA
MsiGetProductPropertyA.restype = wintypes.DWORD
MsiGetProductPropertyA.argtypes = [
wintypes.DWORD, # hProduct : MSIHANDLE
wintypes.LPCSTR, # szProperty : LPCSTR
wintypes.LPSTR, # lpValueBuf : LPSTR optional, out
ctypes.POINTER(wintypes.DWORD), # pcchValueBuf : DWORD* optional, in/out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('msi.dll')
MsiGetProductPropertyA = Fiddle::Function.new(
lib['MsiGetProductPropertyA'],
[
-Fiddle::TYPE_INT, # hProduct : MSIHANDLE
Fiddle::TYPE_VOIDP, # szProperty : LPCSTR
Fiddle::TYPE_VOIDP, # lpValueBuf : LPSTR optional, out
Fiddle::TYPE_VOIDP, # pcchValueBuf : DWORD* optional, in/out
],
-Fiddle::TYPE_INT)#[link(name = "msi")]
extern "system" {
fn MsiGetProductPropertyA(
hProduct: u32, // MSIHANDLE
szProperty: *const u8, // LPCSTR
lpValueBuf: *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 MsiGetProductPropertyA(uint hProduct, [MarshalAs(UnmanagedType.LPStr)] string szProperty, [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpValueBuf, IntPtr pcchValueBuf);
"@
$api = Add-Type -MemberDefinition $sig -Name 'msi_MsiGetProductPropertyA' -Namespace Win32 -PassThru
# $api::MsiGetProductPropertyA(hProduct, szProperty, lpValueBuf, pcchValueBuf)#uselib "msi.dll"
#func global MsiGetProductPropertyA "MsiGetProductPropertyA" sptr, sptr, sptr, sptr
; MsiGetProductPropertyA hProduct, szProperty, varptr(lpValueBuf), varptr(pcchValueBuf) ; 戻り値は stat
; hProduct : MSIHANDLE -> "sptr"
; szProperty : LPCSTR -> "sptr"
; lpValueBuf : LPSTR optional, out -> "sptr"
; pcchValueBuf : DWORD* optional, in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "msi.dll" #cfunc global MsiGetProductPropertyA "MsiGetProductPropertyA" int, str, var, var ; res = MsiGetProductPropertyA(hProduct, szProperty, lpValueBuf, pcchValueBuf) ; hProduct : MSIHANDLE -> "int" ; szProperty : LPCSTR -> "str" ; lpValueBuf : LPSTR optional, out -> "var" ; pcchValueBuf : DWORD* optional, in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "msi.dll" #cfunc global MsiGetProductPropertyA "MsiGetProductPropertyA" int, str, sptr, sptr ; res = MsiGetProductPropertyA(hProduct, szProperty, varptr(lpValueBuf), varptr(pcchValueBuf)) ; hProduct : MSIHANDLE -> "int" ; szProperty : LPCSTR -> "str" ; lpValueBuf : LPSTR optional, out -> "sptr" ; pcchValueBuf : DWORD* optional, in/out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; DWORD MsiGetProductPropertyA(MSIHANDLE hProduct, LPCSTR szProperty, LPSTR lpValueBuf, DWORD* pcchValueBuf) #uselib "msi.dll" #cfunc global MsiGetProductPropertyA "MsiGetProductPropertyA" int, str, var, var ; res = MsiGetProductPropertyA(hProduct, szProperty, lpValueBuf, pcchValueBuf) ; hProduct : MSIHANDLE -> "int" ; szProperty : LPCSTR -> "str" ; lpValueBuf : LPSTR optional, out -> "var" ; pcchValueBuf : DWORD* optional, in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; DWORD MsiGetProductPropertyA(MSIHANDLE hProduct, LPCSTR szProperty, LPSTR lpValueBuf, DWORD* pcchValueBuf) #uselib "msi.dll" #cfunc global MsiGetProductPropertyA "MsiGetProductPropertyA" int, str, intptr, intptr ; res = MsiGetProductPropertyA(hProduct, szProperty, varptr(lpValueBuf), varptr(pcchValueBuf)) ; hProduct : MSIHANDLE -> "int" ; szProperty : LPCSTR -> "str" ; lpValueBuf : LPSTR optional, out -> "intptr" ; pcchValueBuf : DWORD* optional, in/out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
msi = windows.NewLazySystemDLL("msi.dll")
procMsiGetProductPropertyA = msi.NewProc("MsiGetProductPropertyA")
)
// hProduct (MSIHANDLE), szProperty (LPCSTR), lpValueBuf (LPSTR optional, out), pcchValueBuf (DWORD* optional, in/out)
r1, _, err := procMsiGetProductPropertyA.Call(
uintptr(hProduct),
uintptr(unsafe.Pointer(windows.BytePtrFromString(szProperty))),
uintptr(lpValueBuf),
uintptr(pcchValueBuf),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // DWORDfunction MsiGetProductPropertyA(
hProduct: DWORD; // MSIHANDLE
szProperty: PAnsiChar; // LPCSTR
lpValueBuf: PAnsiChar; // LPSTR optional, out
pcchValueBuf: Pointer // DWORD* optional, in/out
): DWORD; stdcall;
external 'msi.dll' name 'MsiGetProductPropertyA';result := DllCall("msi\MsiGetProductPropertyA"
, "UInt", hProduct ; MSIHANDLE
, "AStr", szProperty ; LPCSTR
, "Ptr", lpValueBuf ; LPSTR optional, out
, "Ptr", pcchValueBuf ; DWORD* optional, in/out
, "UInt") ; return: DWORD●MsiGetProductPropertyA(hProduct, szProperty, lpValueBuf, pcchValueBuf) = DLL("msi.dll", "dword MsiGetProductPropertyA(dword, char*, char*, void*)")
# 呼び出し: MsiGetProductPropertyA(hProduct, szProperty, lpValueBuf, pcchValueBuf)
# hProduct : MSIHANDLE -> "dword"
# szProperty : LPCSTR -> "char*"
# lpValueBuf : LPSTR optional, out -> "char*"
# pcchValueBuf : DWORD* optional, in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。