Win32 API 日本語リファレンス
ホームDevices.AllJoyn › alljoyn_abouticon_setcontent_frommsgarg

alljoyn_abouticon_setcontent_frommsgarg

関数
メッセージ引数からAboutIconのアイコン内容を設定する。
DLLMSAJApi.dll呼出規約winapi

シグネチャ

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

QStatus alljoyn_abouticon_setcontent_frommsgarg(
    alljoyn_abouticon icon,
    alljoyn_msgarg arg
);

パラメーター

名前方向
iconalljoyn_abouticonin
argalljoyn_msgargin

戻り値の型: QStatus

各言語での呼び出し定義

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

QStatus alljoyn_abouticon_setcontent_frommsgarg(
    alljoyn_abouticon icon,
    alljoyn_msgarg arg
);
[DllImport("MSAJApi.dll", ExactSpelling = true)]
static extern int alljoyn_abouticon_setcontent_frommsgarg(
    IntPtr icon,   // alljoyn_abouticon
    IntPtr arg   // alljoyn_msgarg
);
<DllImport("MSAJApi.dll", ExactSpelling:=True)>
Public Shared Function alljoyn_abouticon_setcontent_frommsgarg(
    icon As IntPtr,   ' alljoyn_abouticon
    arg As IntPtr   ' alljoyn_msgarg
) As Integer
End Function
' icon : alljoyn_abouticon
' arg : alljoyn_msgarg
Declare PtrSafe Function alljoyn_abouticon_setcontent_frommsgarg Lib "msajapi" ( _
    ByVal icon As LongPtr, _
    ByVal arg As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

alljoyn_abouticon_setcontent_frommsgarg = ctypes.windll.msajapi.alljoyn_abouticon_setcontent_frommsgarg
alljoyn_abouticon_setcontent_frommsgarg.restype = ctypes.c_int
alljoyn_abouticon_setcontent_frommsgarg.argtypes = [
    ctypes.c_ssize_t,  # icon : alljoyn_abouticon
    ctypes.c_ssize_t,  # arg : alljoyn_msgarg
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('MSAJApi.dll')
alljoyn_abouticon_setcontent_frommsgarg = Fiddle::Function.new(
  lib['alljoyn_abouticon_setcontent_frommsgarg'],
  [
    Fiddle::TYPE_INTPTR_T,  # icon : alljoyn_abouticon
    Fiddle::TYPE_INTPTR_T,  # arg : alljoyn_msgarg
  ],
  Fiddle::TYPE_INT)
#[link(name = "msajapi")]
extern "system" {
    fn alljoyn_abouticon_setcontent_frommsgarg(
        icon: isize,  // alljoyn_abouticon
        arg: isize  // alljoyn_msgarg
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("MSAJApi.dll")]
public static extern int alljoyn_abouticon_setcontent_frommsgarg(IntPtr icon, IntPtr arg);
"@
$api = Add-Type -MemberDefinition $sig -Name 'MSAJApi_alljoyn_abouticon_setcontent_frommsgarg' -Namespace Win32 -PassThru
# $api::alljoyn_abouticon_setcontent_frommsgarg(icon, arg)
#uselib "MSAJApi.dll"
#func global alljoyn_abouticon_setcontent_frommsgarg "alljoyn_abouticon_setcontent_frommsgarg" sptr, sptr
; alljoyn_abouticon_setcontent_frommsgarg icon, arg   ; 戻り値は stat
; icon : alljoyn_abouticon -> "sptr"
; arg : alljoyn_msgarg -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "MSAJApi.dll"
#cfunc global alljoyn_abouticon_setcontent_frommsgarg "alljoyn_abouticon_setcontent_frommsgarg" sptr, sptr
; res = alljoyn_abouticon_setcontent_frommsgarg(icon, arg)
; icon : alljoyn_abouticon -> "sptr"
; arg : alljoyn_msgarg -> "sptr"
; QStatus alljoyn_abouticon_setcontent_frommsgarg(alljoyn_abouticon icon, alljoyn_msgarg arg)
#uselib "MSAJApi.dll"
#cfunc global alljoyn_abouticon_setcontent_frommsgarg "alljoyn_abouticon_setcontent_frommsgarg" intptr, intptr
; res = alljoyn_abouticon_setcontent_frommsgarg(icon, arg)
; icon : alljoyn_abouticon -> "intptr"
; arg : alljoyn_msgarg -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	msajapi = windows.NewLazySystemDLL("MSAJApi.dll")
	procalljoyn_abouticon_setcontent_frommsgarg = msajapi.NewProc("alljoyn_abouticon_setcontent_frommsgarg")
)

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