Win32 API 日本語リファレンス
ホームUI.WindowsAndMessaging › SetWindowLongPtrA

SetWindowLongPtrA

関数
ウィンドウの指定情報をポインタ幅で設定する(ANSI)。
DLLUSER32.dll文字セットANSI (-A)呼出規約winapiSetLastErrorあり対応OSWindows 2000 以降

シグネチャ

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

INT_PTR SetWindowLongPtrA(
    HWND hWnd,
    WINDOW_LONG_PTR_INDEX nIndex,
    INT_PTR dwNewLong
);

パラメーター

名前方向
hWndHWNDin
nIndexWINDOW_LONG_PTR_INDEXin
dwNewLongINT_PTRin

戻り値の型: INT_PTR

各言語での呼び出し定義

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

INT_PTR SetWindowLongPtrA(
    HWND hWnd,
    WINDOW_LONG_PTR_INDEX nIndex,
    INT_PTR dwNewLong
);
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
static extern IntPtr SetWindowLongPtrA(
    IntPtr hWnd,   // HWND
    int nIndex,   // WINDOW_LONG_PTR_INDEX
    IntPtr dwNewLong   // INT_PTR
);
<DllImport("USER32.dll", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function SetWindowLongPtrA(
    hWnd As IntPtr,   ' HWND
    nIndex As Integer,   ' WINDOW_LONG_PTR_INDEX
    dwNewLong As IntPtr   ' INT_PTR
) As IntPtr
End Function
' hWnd : HWND
' nIndex : WINDOW_LONG_PTR_INDEX
' dwNewLong : INT_PTR
Declare PtrSafe Function SetWindowLongPtrA Lib "user32" ( _
    ByVal hWnd As LongPtr, _
    ByVal nIndex As Long, _
    ByVal dwNewLong As LongPtr) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

SetWindowLongPtrA = ctypes.windll.user32.SetWindowLongPtrA
SetWindowLongPtrA.restype = ctypes.c_ssize_t
SetWindowLongPtrA.argtypes = [
    wintypes.HANDLE,  # hWnd : HWND
    ctypes.c_int,  # nIndex : WINDOW_LONG_PTR_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')
SetWindowLongPtrA = Fiddle::Function.new(
  lib['SetWindowLongPtrA'],
  [
    Fiddle::TYPE_VOIDP,  # hWnd : HWND
    Fiddle::TYPE_INT,  # nIndex : WINDOW_LONG_PTR_INDEX
    Fiddle::TYPE_INTPTR_T,  # dwNewLong : INT_PTR
  ],
  Fiddle::TYPE_INTPTR_T)
#[link(name = "user32")]
extern "system" {
    fn SetWindowLongPtrA(
        hWnd: *mut core::ffi::c_void,  // HWND
        nIndex: i32,  // WINDOW_LONG_PTR_INDEX
        dwNewLong: isize  // INT_PTR
    ) -> isize;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true)]
public static extern IntPtr SetWindowLongPtrA(IntPtr hWnd, int nIndex, IntPtr dwNewLong);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_SetWindowLongPtrA' -Namespace Win32 -PassThru
# $api::SetWindowLongPtrA(hWnd, nIndex, dwNewLong)
#uselib "USER32.dll"
#func global SetWindowLongPtrA "SetWindowLongPtrA" sptr, sptr, sptr
; SetWindowLongPtrA hWnd, nIndex, dwNewLong   ; 戻り値は stat
; hWnd : HWND -> "sptr"
; nIndex : WINDOW_LONG_PTR_INDEX -> "sptr"
; dwNewLong : INT_PTR -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "USER32.dll"
#cfunc global SetWindowLongPtrA "SetWindowLongPtrA" sptr, int, sptr
; res = SetWindowLongPtrA(hWnd, nIndex, dwNewLong)
; hWnd : HWND -> "sptr"
; nIndex : WINDOW_LONG_PTR_INDEX -> "int"
; dwNewLong : INT_PTR -> "sptr"
; INT_PTR SetWindowLongPtrA(HWND hWnd, WINDOW_LONG_PTR_INDEX nIndex, INT_PTR dwNewLong)
#uselib "USER32.dll"
#cfunc global SetWindowLongPtrA "SetWindowLongPtrA" intptr, int, intptr
; res = SetWindowLongPtrA(hWnd, nIndex, dwNewLong)
; hWnd : HWND -> "intptr"
; nIndex : WINDOW_LONG_PTR_INDEX -> "int"
; dwNewLong : INT_PTR -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	user32 = windows.NewLazySystemDLL("USER32.dll")
	procSetWindowLongPtrA = user32.NewProc("SetWindowLongPtrA")
)

// hWnd (HWND), nIndex (WINDOW_LONG_PTR_INDEX), dwNewLong (INT_PTR)
r1, _, err := procSetWindowLongPtrA.Call(
	uintptr(hWnd),
	uintptr(nIndex),
	uintptr(dwNewLong),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // INT_PTR
function SetWindowLongPtrA(
  hWnd: THandle;   // HWND
  nIndex: Integer;   // WINDOW_LONG_PTR_INDEX
  dwNewLong: NativeInt   // INT_PTR
): NativeInt; stdcall;
  external 'USER32.dll' name 'SetWindowLongPtrA';
result := DllCall("USER32\SetWindowLongPtrA"
    , "Ptr", hWnd   ; HWND
    , "Int", nIndex   ; WINDOW_LONG_PTR_INDEX
    , "Ptr", dwNewLong   ; INT_PTR
    , "Ptr")   ; return: INT_PTR
●SetWindowLongPtrA(hWnd, nIndex, dwNewLong) = DLL("USER32.dll", "int SetWindowLongPtrA(void*, int, int)")
# 呼び出し: SetWindowLongPtrA(hWnd, nIndex, dwNewLong)
# hWnd : HWND -> "void*"
# nIndex : WINDOW_LONG_PTR_INDEX -> "int"
# dwNewLong : INT_PTR -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。