ホーム › UI.WindowsAndMessaging › SetClassLongPtrW
SetClassLongPtrW
関数ウィンドウクラスの情報をポインタ幅で設定する(Unicode)。
シグネチャ
// USER32.dll (Unicode / -W)
#include <windows.h>
UINT_PTR SetClassLongPtrW(
HWND hWnd,
GET_CLASS_LONG_INDEX nIndex,
INT_PTR dwNewLong
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| hWnd | HWND | in |
| nIndex | GET_CLASS_LONG_INDEX | in |
| dwNewLong | INT_PTR | in |
戻り値の型: UINT_PTR
各言語での呼び出し定義
// USER32.dll (Unicode / -W)
#include <windows.h>
UINT_PTR SetClassLongPtrW(
HWND hWnd,
GET_CLASS_LONG_INDEX nIndex,
INT_PTR dwNewLong
);[DllImport("USER32.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
static extern UIntPtr SetClassLongPtrW(
IntPtr hWnd, // HWND
int nIndex, // GET_CLASS_LONG_INDEX
IntPtr dwNewLong // INT_PTR
);<DllImport("USER32.dll", CharSet:=CharSet.Unicode, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetClassLongPtrW(
hWnd As IntPtr, ' HWND
nIndex As Integer, ' GET_CLASS_LONG_INDEX
dwNewLong As IntPtr ' INT_PTR
) As UIntPtr
End Function' hWnd : HWND
' nIndex : GET_CLASS_LONG_INDEX
' dwNewLong : INT_PTR
Declare PtrSafe Function SetClassLongPtrW Lib "user32" ( _
ByVal hWnd As LongPtr, _
ByVal nIndex As Long, _
ByVal dwNewLong As LongPtr) As LongPtr
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
SetClassLongPtrW = ctypes.windll.user32.SetClassLongPtrW
SetClassLongPtrW.restype = ctypes.c_size_t
SetClassLongPtrW.argtypes = [
wintypes.HANDLE, # hWnd : HWND
ctypes.c_int, # nIndex : GET_CLASS_LONG_INDEX
ctypes.c_ssize_t, # dwNewLong : INT_PTR
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('USER32.dll')
SetClassLongPtrW = Fiddle::Function.new(
lib['SetClassLongPtrW'],
[
Fiddle::TYPE_VOIDP, # hWnd : HWND
Fiddle::TYPE_INT, # nIndex : GET_CLASS_LONG_INDEX
Fiddle::TYPE_INTPTR_T, # dwNewLong : INT_PTR
],
Fiddle::TYPE_UINTPTR_T)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "user32")]
extern "system" {
fn SetClassLongPtrW(
hWnd: *mut core::ffi::c_void, // HWND
nIndex: i32, // GET_CLASS_LONG_INDEX
dwNewLong: isize // INT_PTR
) -> usize;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("USER32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern UIntPtr SetClassLongPtrW(IntPtr hWnd, int nIndex, IntPtr dwNewLong);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_SetClassLongPtrW' -Namespace Win32 -PassThru
# $api::SetClassLongPtrW(hWnd, nIndex, dwNewLong)#uselib "USER32.dll"
#func global SetClassLongPtrW "SetClassLongPtrW" wptr, wptr, wptr
; SetClassLongPtrW hWnd, nIndex, dwNewLong ; 戻り値は stat
; hWnd : HWND -> "wptr"
; nIndex : GET_CLASS_LONG_INDEX -> "wptr"
; dwNewLong : INT_PTR -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "USER32.dll"
#cfunc global SetClassLongPtrW "SetClassLongPtrW" sptr, int, sptr
; res = SetClassLongPtrW(hWnd, nIndex, dwNewLong)
; hWnd : HWND -> "sptr"
; nIndex : GET_CLASS_LONG_INDEX -> "int"
; dwNewLong : INT_PTR -> "sptr"; UINT_PTR SetClassLongPtrW(HWND hWnd, GET_CLASS_LONG_INDEX nIndex, INT_PTR dwNewLong)
#uselib "USER32.dll"
#cfunc global SetClassLongPtrW "SetClassLongPtrW" intptr, int, intptr
; res = SetClassLongPtrW(hWnd, nIndex, dwNewLong)
; hWnd : HWND -> "intptr"
; nIndex : GET_CLASS_LONG_INDEX -> "int"
; dwNewLong : INT_PTR -> "intptr"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
user32 = windows.NewLazySystemDLL("USER32.dll")
procSetClassLongPtrW = user32.NewProc("SetClassLongPtrW")
)
// hWnd (HWND), nIndex (GET_CLASS_LONG_INDEX), dwNewLong (INT_PTR)
r1, _, err := procSetClassLongPtrW.Call(
uintptr(hWnd),
uintptr(nIndex),
uintptr(dwNewLong),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // UINT_PTRfunction SetClassLongPtrW(
hWnd: THandle; // HWND
nIndex: Integer; // GET_CLASS_LONG_INDEX
dwNewLong: NativeInt // INT_PTR
): NativeUInt; stdcall;
external 'USER32.dll' name 'SetClassLongPtrW';result := DllCall("USER32\SetClassLongPtrW"
, "Ptr", hWnd ; HWND
, "Int", nIndex ; GET_CLASS_LONG_INDEX
, "Ptr", dwNewLong ; INT_PTR
, "UPtr") ; return: UINT_PTR●SetClassLongPtrW(hWnd, nIndex, dwNewLong) = DLL("USER32.dll", "int SetClassLongPtrW(void*, int, int)")
# 呼び出し: SetClassLongPtrW(hWnd, nIndex, dwNewLong)
# hWnd : HWND -> "void*"
# nIndex : GET_CLASS_LONG_INDEX -> "int"
# dwNewLong : INT_PTR -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。