Win32 API 日本語リファレンス
ホームStorage.Compression › SetCompressorInformation

SetCompressorInformation

関数
圧縮器の指定種別のパラメータを設定する。
DLLCabinet.dll呼出規約winapiSetLastErrorあり対応OSwindows8.0

シグネチャ

// Cabinet.dll
#include <windows.h>

BOOL SetCompressorInformation(
    COMPRESSOR_HANDLE CompressorHandle,
    COMPRESS_INFORMATION_CLASS CompressInformationClass,
    const void* CompressInformation,
    UINT_PTR CompressInformationSize
);

パラメーター

名前方向
CompressorHandleCOMPRESSOR_HANDLEin
CompressInformationClassCOMPRESS_INFORMATION_CLASSin
CompressInformationvoid*in
CompressInformationSizeUINT_PTRin

戻り値の型: BOOL

各言語での呼び出し定義

// Cabinet.dll
#include <windows.h>

BOOL SetCompressorInformation(
    COMPRESSOR_HANDLE CompressorHandle,
    COMPRESS_INFORMATION_CLASS CompressInformationClass,
    const void* CompressInformation,
    UINT_PTR CompressInformationSize
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("Cabinet.dll", SetLastError = true, ExactSpelling = true)]
static extern bool SetCompressorInformation(
    IntPtr CompressorHandle,   // COMPRESSOR_HANDLE
    int CompressInformationClass,   // COMPRESS_INFORMATION_CLASS
    IntPtr CompressInformation,   // void*
    UIntPtr CompressInformationSize   // UINT_PTR
);
<DllImport("Cabinet.dll", SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetCompressorInformation(
    CompressorHandle As IntPtr,   ' COMPRESSOR_HANDLE
    CompressInformationClass As Integer,   ' COMPRESS_INFORMATION_CLASS
    CompressInformation As IntPtr,   ' void*
    CompressInformationSize As UIntPtr   ' UINT_PTR
) As Boolean
End Function
' CompressorHandle : COMPRESSOR_HANDLE
' CompressInformationClass : COMPRESS_INFORMATION_CLASS
' CompressInformation : void*
' CompressInformationSize : UINT_PTR
Declare PtrSafe Function SetCompressorInformation Lib "cabinet" ( _
    ByVal CompressorHandle As LongPtr, _
    ByVal CompressInformationClass As Long, _
    ByVal CompressInformation As LongPtr, _
    ByVal CompressInformationSize As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

SetCompressorInformation = ctypes.windll.cabinet.SetCompressorInformation
SetCompressorInformation.restype = wintypes.BOOL
SetCompressorInformation.argtypes = [
    wintypes.HANDLE,  # CompressorHandle : COMPRESSOR_HANDLE
    ctypes.c_int,  # CompressInformationClass : COMPRESS_INFORMATION_CLASS
    ctypes.POINTER(None),  # CompressInformation : void*
    ctypes.c_size_t,  # CompressInformationSize : UINT_PTR
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('Cabinet.dll')
SetCompressorInformation = Fiddle::Function.new(
  lib['SetCompressorInformation'],
  [
    Fiddle::TYPE_VOIDP,  # CompressorHandle : COMPRESSOR_HANDLE
    Fiddle::TYPE_INT,  # CompressInformationClass : COMPRESS_INFORMATION_CLASS
    Fiddle::TYPE_VOIDP,  # CompressInformation : void*
    Fiddle::TYPE_UINTPTR_T,  # CompressInformationSize : UINT_PTR
  ],
  Fiddle::TYPE_INT)
#[link(name = "cabinet")]
extern "system" {
    fn SetCompressorInformation(
        CompressorHandle: *mut core::ffi::c_void,  // COMPRESSOR_HANDLE
        CompressInformationClass: i32,  // COMPRESS_INFORMATION_CLASS
        CompressInformation: *const (),  // void*
        CompressInformationSize: usize  // UINT_PTR
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("Cabinet.dll", SetLastError = true)]
public static extern bool SetCompressorInformation(IntPtr CompressorHandle, int CompressInformationClass, IntPtr CompressInformation, UIntPtr CompressInformationSize);
"@
$api = Add-Type -MemberDefinition $sig -Name 'Cabinet_SetCompressorInformation' -Namespace Win32 -PassThru
# $api::SetCompressorInformation(CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize)
#uselib "Cabinet.dll"
#func global SetCompressorInformation "SetCompressorInformation" sptr, sptr, sptr, sptr
; SetCompressorInformation CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize   ; 戻り値は stat
; CompressorHandle : COMPRESSOR_HANDLE -> "sptr"
; CompressInformationClass : COMPRESS_INFORMATION_CLASS -> "sptr"
; CompressInformation : void* -> "sptr"
; CompressInformationSize : UINT_PTR -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "Cabinet.dll"
#cfunc global SetCompressorInformation "SetCompressorInformation" sptr, int, sptr, sptr
; res = SetCompressorInformation(CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize)
; CompressorHandle : COMPRESSOR_HANDLE -> "sptr"
; CompressInformationClass : COMPRESS_INFORMATION_CLASS -> "int"
; CompressInformation : void* -> "sptr"
; CompressInformationSize : UINT_PTR -> "sptr"
; BOOL SetCompressorInformation(COMPRESSOR_HANDLE CompressorHandle, COMPRESS_INFORMATION_CLASS CompressInformationClass, void* CompressInformation, UINT_PTR CompressInformationSize)
#uselib "Cabinet.dll"
#cfunc global SetCompressorInformation "SetCompressorInformation" intptr, int, intptr, intptr
; res = SetCompressorInformation(CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize)
; CompressorHandle : COMPRESSOR_HANDLE -> "intptr"
; CompressInformationClass : COMPRESS_INFORMATION_CLASS -> "int"
; CompressInformation : void* -> "intptr"
; CompressInformationSize : UINT_PTR -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	cabinet = windows.NewLazySystemDLL("Cabinet.dll")
	procSetCompressorInformation = cabinet.NewProc("SetCompressorInformation")
)

// CompressorHandle (COMPRESSOR_HANDLE), CompressInformationClass (COMPRESS_INFORMATION_CLASS), CompressInformation (void*), CompressInformationSize (UINT_PTR)
r1, _, err := procSetCompressorInformation.Call(
	uintptr(CompressorHandle),
	uintptr(CompressInformationClass),
	uintptr(CompressInformation),
	uintptr(CompressInformationSize),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function SetCompressorInformation(
  CompressorHandle: THandle;   // COMPRESSOR_HANDLE
  CompressInformationClass: Integer;   // COMPRESS_INFORMATION_CLASS
  CompressInformation: Pointer;   // void*
  CompressInformationSize: NativeUInt   // UINT_PTR
): BOOL; stdcall;
  external 'Cabinet.dll' name 'SetCompressorInformation';
result := DllCall("Cabinet\SetCompressorInformation"
    , "Ptr", CompressorHandle   ; COMPRESSOR_HANDLE
    , "Int", CompressInformationClass   ; COMPRESS_INFORMATION_CLASS
    , "Ptr", CompressInformation   ; void*
    , "UPtr", CompressInformationSize   ; UINT_PTR
    , "Int")   ; return: BOOL
●SetCompressorInformation(CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize) = DLL("Cabinet.dll", "bool SetCompressorInformation(void*, int, void*, int)")
# 呼び出し: SetCompressorInformation(CompressorHandle, CompressInformationClass, CompressInformation, CompressInformationSize)
# CompressorHandle : COMPRESSOR_HANDLE -> "void*"
# CompressInformationClass : COMPRESS_INFORMATION_CLASS -> "int"
# CompressInformation : void* -> "void*"
# CompressInformationSize : UINT_PTR -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。