ホーム › Networking.ActiveDirectory › ReallocADsStr
ReallocADsStr
関数ADSI用文字列を新しい値で再確保する。
シグネチャ
// ACTIVEDS.dll
#include <windows.h>
BOOL ReallocADsStr(
LPWSTR* ppStr,
LPWSTR pStr
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| ppStr | LPWSTR* | inout | 既存文字列ポインタのアドレス。新文字列に置き換えられ旧領域は解放される。 |
| pStr | LPWSTR | in | 新たに格納する複製元のワイド文字列。NULLで実質的に解放となる。 |
戻り値の型: BOOL
各言語での呼び出し定義
// ACTIVEDS.dll
#include <windows.h>
BOOL ReallocADsStr(
LPWSTR* ppStr,
LPWSTR pStr
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("ACTIVEDS.dll", ExactSpelling = true)]
static extern bool ReallocADsStr(
IntPtr ppStr, // LPWSTR* in/out
[MarshalAs(UnmanagedType.LPWStr)] string pStr // LPWSTR
);<DllImport("ACTIVEDS.dll", ExactSpelling:=True)>
Public Shared Function ReallocADsStr(
ppStr As IntPtr, ' LPWSTR* in/out
<MarshalAs(UnmanagedType.LPWStr)> pStr As String ' LPWSTR
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' ppStr : LPWSTR* in/out
' pStr : LPWSTR
Declare PtrSafe Function ReallocADsStr Lib "activeds" ( _
ByVal ppStr As LongPtr, _
ByVal pStr As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
ReallocADsStr = ctypes.windll.activeds.ReallocADsStr
ReallocADsStr.restype = wintypes.BOOL
ReallocADsStr.argtypes = [
ctypes.c_void_p, # ppStr : LPWSTR* in/out
wintypes.LPCWSTR, # pStr : LPWSTR
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('ACTIVEDS.dll')
ReallocADsStr = Fiddle::Function.new(
lib['ReallocADsStr'],
[
Fiddle::TYPE_VOIDP, # ppStr : LPWSTR* in/out
Fiddle::TYPE_VOIDP, # pStr : LPWSTR
],
Fiddle::TYPE_INT)#[link(name = "activeds")]
extern "system" {
fn ReallocADsStr(
ppStr: *mut *mut u16, // LPWSTR* in/out
pStr: *mut u16 // LPWSTR
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("ACTIVEDS.dll")]
public static extern bool ReallocADsStr(IntPtr ppStr, [MarshalAs(UnmanagedType.LPWStr)] string pStr);
"@
$api = Add-Type -MemberDefinition $sig -Name 'ACTIVEDS_ReallocADsStr' -Namespace Win32 -PassThru
# $api::ReallocADsStr(ppStr, pStr)#uselib "ACTIVEDS.dll"
#func global ReallocADsStr "ReallocADsStr" sptr, sptr
; ReallocADsStr varptr(ppStr), pStr ; 戻り値は stat
; ppStr : LPWSTR* in/out -> "sptr"
; pStr : LPWSTR -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "ACTIVEDS.dll" #cfunc global ReallocADsStr "ReallocADsStr" var, wstr ; res = ReallocADsStr(ppStr, pStr) ; ppStr : LPWSTR* in/out -> "var" ; pStr : LPWSTR -> "wstr" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "ACTIVEDS.dll" #cfunc global ReallocADsStr "ReallocADsStr" sptr, wstr ; res = ReallocADsStr(varptr(ppStr), pStr) ; ppStr : LPWSTR* in/out -> "sptr" ; pStr : LPWSTR -> "wstr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL ReallocADsStr(LPWSTR* ppStr, LPWSTR pStr) #uselib "ACTIVEDS.dll" #cfunc global ReallocADsStr "ReallocADsStr" var, wstr ; res = ReallocADsStr(ppStr, pStr) ; ppStr : LPWSTR* in/out -> "var" ; pStr : LPWSTR -> "wstr" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL ReallocADsStr(LPWSTR* ppStr, LPWSTR pStr) #uselib "ACTIVEDS.dll" #cfunc global ReallocADsStr "ReallocADsStr" intptr, wstr ; res = ReallocADsStr(varptr(ppStr), pStr) ; ppStr : LPWSTR* in/out -> "intptr" ; pStr : LPWSTR -> "wstr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
activeds = windows.NewLazySystemDLL("ACTIVEDS.dll")
procReallocADsStr = activeds.NewProc("ReallocADsStr")
)
// ppStr (LPWSTR* in/out), pStr (LPWSTR)
r1, _, err := procReallocADsStr.Call(
uintptr(ppStr),
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(pStr))),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction ReallocADsStr(
ppStr: PPWideChar; // LPWSTR* in/out
pStr: PWideChar // LPWSTR
): BOOL; stdcall;
external 'ACTIVEDS.dll' name 'ReallocADsStr';result := DllCall("ACTIVEDS\ReallocADsStr"
, "Ptr", ppStr ; LPWSTR* in/out
, "WStr", pStr ; LPWSTR
, "Int") ; return: BOOL●ReallocADsStr(ppStr, pStr) = DLL("ACTIVEDS.dll", "bool ReallocADsStr(void*, char*)")
# 呼び出し: ReallocADsStr(ppStr, pStr)
# ppStr : LPWSTR* in/out -> "void*"
# pStr : LPWSTR -> "char*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "activeds" fn ReallocADsStr(
ppStr: [*c][*c]u16, // LPWSTR* in/out
pStr: [*c]const u16 // LPWSTR
) callconv(std.os.windows.WINAPI) i32;proc ReallocADsStr(
ppStr: ptr WideCString, # LPWSTR* in/out
pStr: WideCString # LPWSTR
): int32 {.importc: "ReallocADsStr", stdcall, dynlib: "ACTIVEDS.dll".}pragma(lib, "activeds");
extern(Windows)
int ReallocADsStr(
wchar** ppStr, // LPWSTR* in/out
const(wchar)* pStr // LPWSTR
);ccall((:ReallocADsStr, "ACTIVEDS.dll"), stdcall, Int32,
(Ptr{Ptr{UInt16}}, Cwstring),
ppStr, pStr)
# ppStr : LPWSTR* in/out -> Ptr{Ptr{UInt16}}
# pStr : LPWSTR -> Cwstring
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t ReallocADsStr(
uint16_t** ppStr,
const uint16_t* pStr);
]]
local activeds = ffi.load("activeds")
-- activeds.ReallocADsStr(ppStr, pStr)
-- ppStr : LPWSTR* in/out
-- pStr : LPWSTR
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('ACTIVEDS.dll');
const ReallocADsStr = lib.func('__stdcall', 'ReallocADsStr', 'int32_t', ['void *', 'str16']);
// ReallocADsStr(ppStr, pStr)
// ppStr : LPWSTR* in/out -> 'void *'
// pStr : LPWSTR -> 'str16'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("ACTIVEDS.dll", {
ReallocADsStr: { parameters: ["pointer", "buffer"], result: "i32" },
});
// lib.symbols.ReallocADsStr(ppStr, pStr)
// ppStr : LPWSTR* in/out -> "pointer"
// pStr : LPWSTR -> "buffer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t ReallocADsStr(
uint16_t** ppStr,
const uint16_t* pStr);
C, "ACTIVEDS.dll");
// $ffi->ReallocADsStr(ppStr, pStr);
// ppStr : LPWSTR* in/out
// pStr : LPWSTR
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Activeds extends StdCallLibrary {
Activeds INSTANCE = Native.load("activeds", Activeds.class);
boolean ReallocADsStr(
PointerByReference ppStr, // LPWSTR* in/out
WString pStr // LPWSTR
);
}@[Link("activeds")]
lib LibACTIVEDS
fun ReallocADsStr = ReallocADsStr(
ppStr : UInt16**, # LPWSTR* in/out
pStr : UInt16* # LPWSTR
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef ReallocADsStrNative = Int32 Function(Pointer<Pointer<Utf16>>, Pointer<Utf16>);
typedef ReallocADsStrDart = int Function(Pointer<Pointer<Utf16>>, Pointer<Utf16>);
final ReallocADsStr = DynamicLibrary.open('ACTIVEDS.dll')
.lookupFunction<ReallocADsStrNative, ReallocADsStrDart>('ReallocADsStr');
// ppStr : LPWSTR* in/out -> Pointer<Pointer<Utf16>>
// pStr : LPWSTR -> Pointer<Utf16>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function ReallocADsStr(
ppStr: PPWideChar; // LPWSTR* in/out
pStr: PWideChar // LPWSTR
): BOOL; stdcall;
external 'ACTIVEDS.dll' name 'ReallocADsStr';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "ReallocADsStr"
c_ReallocADsStr :: Ptr CWString -> CWString -> IO CInt
-- ppStr : LPWSTR* in/out -> Ptr CWString
-- pStr : LPWSTR -> CWString
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let reallocadsstr =
foreign "ReallocADsStr"
((ptr (ptr uint16_t)) @-> (ptr uint16_t) @-> returning int32_t)
(* ppStr : LPWSTR* in/out -> (ptr (ptr uint16_t)) *)
(* pStr : LPWSTR -> (ptr uint16_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library activeds (t "ACTIVEDS.dll"))
(cffi:use-foreign-library activeds)
(cffi:defcfun ("ReallocADsStr" realloc-ads-str :convention :stdcall) :int32
(pp-str :pointer) ; LPWSTR* in/out
(p-str (:string :encoding :utf-16le))) ; LPWSTR
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $ReallocADsStr = Win32::API::More->new('ACTIVEDS',
'BOOL ReallocADsStr(LPVOID ppStr, LPCWSTR pStr)');
# my $ret = $ReallocADsStr->Call($ppStr, $pStr);
# ppStr : LPWSTR* in/out -> LPVOID
# pStr : LPWSTR -> LPCWSTR
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。