Online HSP Document Library
callfunc の検索結果 [Reset]
リファレンス (1 カテゴリ)
hspint64.dll 20

callfunc64d
外部関数の呼び出し(戻り値double型)

callfunc64f
外部関数の呼び出し(戻り値float(intキャスト)型)

callfunc64i
外部関数の呼び出し(戻り値int64型)

cfunc64
外部関数の呼び出し(可変長引数版)

cfunc64d
外部関数の呼び出し(可変長引数版)(戻り値:double型)

cfunc64f
外部関数の呼び出し(可変長引数版)(戻り値:float型)

cfunc64fi
外部関数の呼び出し(可変長引数版)(戻り値:float(intキャスト)型)

cfunc64i
外部関数の呼び出し(可変長引数版)(戻り値:int型)

cfunc64i64
外部関数の呼び出し(可変長引数版)(戻り値:int64型)

cfunc64s
外部関数の呼び出し(可変長引数版)(戻り値:文字列型)

cfunc64sw
外部関数の呼び出し(可変長引数版)(戻り値:Unicode(UTF-16)文字列型)

cfunc64v
外部関数の呼び出し(可変長引数版)(戻り値:void型)

RET_DOUBLE
戻り値:double型

RET_FLOAT
戻り値:float型

RET_FLOAT_INT
戻り値:float(intキャスト)型

RET_INT
戻り値:int型

RET_INT64
戻り値:int64型

RET_STR
戻り値:文字列型

RET_STRW
戻り値:Unicode(UTF-16)文字列型

RET_VOID
戻り値:void型

ドキュメント (0 カテゴリ)

該当するページは見つかりません。

サンプル (1 カテゴリ)
hspint64.dll 26

01_int64.hsp
#include "hsp3_64.as" #include "hspint64.as" int64()
sample\hspint64.dll\01_int64.hsp

02_dim64.hsp
#include "hsp3_64.as" #include "hspint64.as" dim64 int64型の配列変数を作成します dim64
sample\hspint64.dll\02_dim64.hsp

03_qpeek、qpoke.hsp
#include "hsp3_64.as" #include "hspint64.as" qpeek、qpoke
sample\hspint64.dll\03_qpeek、qpoke.hsp

04_varptr64.hsp
#include "hsp3_64.as" #include "hspint64.as" #uselib "user32.dll" #func
sample\hspint64.dll\04_varptr64.hsp

05_dupptr64.hsp
#include "hsp3_64.as" #include "hspint64.as" dupptr64
sample\hspint64.dll\05_dupptr64.hsp

06_libptr64.hsp
#include "hsp3_64.as" #include "hspint64.as" libptr64
sample\hspint64.dll\06_libptr64.hsp

10_float.hsp
#include "hsp3_64.as" #include "hspint64.as" float float値に変換します。 mes
sample\hspint64.dll\10_float.hsp

11_fdim.hsp
#include "hsp3_64.as" #include "hspint64.as" fdim float型の配列変数を作成します fdim
sample\hspint64.dll\11_fdim.hsp

12_floatとfloatintの違い.hsp
#include "hsp3_64.as" #include "hspint64.as" float for HSP モジュール http:
sample\hspint64.dll\12_floatとfloatintの違い.hsp

20_strw.hsp
#include "hsp3_64.as" #include "hspint64.as" strw Unicode文字列(UTF-16)型に変換
sample\hspint64.dll\20_strw.hsp

21_swdim.hsp
#include "hsp3_64.as" #include "hspint64.as" swdim
sample\hspint64.dll\21_swdim.hsp

22_strwlen.hsp
#include "hsp3_64.as" #include "hspint64.as" strwlen
sample\hspint64.dll\22_strwlen.hsp

23_strwrep.hsp
#include "hsp3_64.as" #include "hspint64.as" strwrep
sample\hspint64.dll\23_strwrep.hsp

24_instrw.hsp
#include "hsp3_64.as" #include "hspint64.as" instrw
sample\hspint64.dll\24_instrw.hsp

25_strwupper.hsp
#include "hsp3_64.as" #include "hspint64.as" strwupper
sample\hspint64.dll\25_strwupper.hsp

26_strwlower.hsp
#include "hsp3_64.as" #include "hspint64.as" strwlower
sample\hspint64.dll\26_strwlower.hsp

27_strwinsert.hsp
#include "hsp3_64.as" #include "hspint64.as" strwinsert
sample\hspint64.dll\27_strwinsert.hsp

28_strwmid.hsp
#include "hsp3_64.as" #include "hspint64.as" strwmid
sample\hspint64.dll\28_strwmid.hsp

29_strwtrim.hsp
#include "hsp3_64.as" #include "hspint64.as" strwtrim
sample\hspint64.dll\29_strwtrim.hsp

30_strwcomp.hsp
#include "hsp3_64.as" #include "hspint64.as" strwcomp
sample\hspint64.dll\30_strwcomp.hsp

31_L(),_T() マクロ.hsp
#include "hsp3_64.as" #include "hspint64.as" _T(), L() マクロ #ifdef
sample\hspint64.dll\31_L(),_T() マクロ.hsp

32_UTF-16文字列操作時注意点.hsp
#include "hsp3_64.as" #include "hspint64.as" - 文字列操作時注意点 - - [ありがちな失敗例]
sample\hspint64.dll\32_UTF-16文字列操作時注意点.hsp

40_callfunc64系.hsp
#include "hsp3_64.as" #include "hspint64.as" #uselib "user32.dll" #func
sample\hspint64.dll\40_callfunc64系.hsp

41_cfunc64系.hsp
#include "hsp3_64.as" #include "hspint64.as" #uselib "user32.dll" #func
sample\hspint64.dll\41_cfunc64系.hsp

42_引数が構造体の値渡しの場合.hsp
#include "hsp3_64.as" #include "hspint64.as" #uselib "user32.dll" #func
sample\hspint64.dll\42_引数が構造体の値渡しの場合.hsp

43_戻り値が構造体の値渡しの場合.hsp
#include "hsp3_64.as" #include "hspint64.as" - 戻り値が構造体の値渡しの場合 -
sample\hspint64.dll\43_戻り値が構造体の値渡しの場合.hsp

[Reset]
Online HSP Document Library