600件ヒット
[1-100件を表示]
(0.130秒)
ライブラリ
- fiddle (252)
-
fiddle
/ import (48) - resolv (60)
- win32ole (36)
クラス
-
Fiddle
:: CStruct (12) -
Fiddle
:: Function (48) -
Fiddle
:: Pointer (84) -
Resolv
:: DNS (36) -
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ PARAM (12)
モジュール
- Fiddle (120)
-
Fiddle
:: Importer (36) -
WIN32OLE
:: VARIANT (12)
キーワード
- +@ (12)
- -@ (12)
-
ALIGN
_ INTPTR _ T (12) -
ALIGN
_ PTRDIFF _ T (12) -
ALIGN
_ UINTPTR _ T (12) -
DATA
_ PTR (12) - NULL (12)
- PTR (24)
-
RSTRING
_ END (12) -
SIZEOF
_ INTPTR _ T (12) -
SIZEOF
_ PTRDIFF _ T (12) -
SIZEOF
_ UINTPTR _ T (12) - StringValuePtr (12)
-
TYPE
_ INTPTR _ T (12) -
TYPE
_ PTRDIFF _ T (12) -
TYPE
_ UINTPTR _ T (12) -
VT
_ PTR (12) - [] (12)
- call (12)
-
each
_ resource (12) - fiddle (12)
-
fiddle
/ import (12) - getresource (12)
- getresources (12)
-
is
_ pointer _ to _ heap (12) -
lex
_ get _ str (12) - new (12)
-
ole
_ type _ detail (12) -
rb
_ ary _ entry (12) -
rb
_ class2name (12) -
rb
_ gc _ mark _ children (12) -
rb
_ str _ cat (12) -
rb
_ str _ cat2 (12) -
rb
_ str _ new (12) -
rb
_ str _ new2 (12) - ref (12)
-
return
_ type _ detail (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
ruby
_ xrealloc (12) - size (12)
- sizeof (12)
- struct (12)
-
to
_ i (12) -
to
_ ptr (24) - union (12)
検索結果
先頭5件
-
Fiddle
:: Function # ptr -> Integer | Fiddle :: Function (21201.0) -
関数ポインタを返します。
...関数ポインタを返します。
Fiddle::Function.new の第1引数として指定したものを返します。... -
Fiddle
:: Pointer # ptr -> Fiddle :: Pointer (18207.0) -
自身の指す値を Pointer にして返します。
...ointer にして返します。
自身の指す値はポインタであると仮定します。
C 言語におけるポインタのポインタに対する間接参照 *p と同じです。
この返り値には、free 関数がセットされず、size は 0 とされます。
例:
require 'f......iddle'
s = 'abc'
cptr = Fiddle::Pointer[s]
cref = cptr.ref
p cref.to_s(4).unpack('l*')[0] #=> 136121648
p cptr.to_i #=> 136121648
p cref.ptr.to_s #=> "abc"... -
WIN32OLE
_ PARAM # ole _ type _ detail -> [String] (15206.0) -
パラメータの属性を取得します。
...。
@return 型の属性を文字列配列で返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'IWorksheetFunction')
method = WIN32OLE_METHOD.new(tobj, 'SumIf')
param1 = method.params[0]
p param1.ole_type_detail # => ["PTR", "USERDEFINED", "Range"]
パラ......メータの取り得る属性値はCOMのIDL(インターフェイス定義言語)によって規定されています。
@see http://msdn.microsoft.com/en-us/library/aa367042(VS.85).aspx... -
WIN32OLE
_ METHOD # return _ type _ detail -> [String] (12206.0) -
返り値の型と属性を取得します。
...取得します。
@return 返り値の型と属性を文字列配列で返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Application')
method = WIN32OLE_METHOD.new(tobj, 'Workbooks')
p method.return_type_detail # => ["PTR", "USERDEFINED", "Workbooks"]
属......されていない場合は、WIN32OLE_METHOD#return_typeを要素と
した配列が返ります。
返り値の取り得る属性値はCOMのIDL(インターフェイス定義言語)によって規
定されています。
@see http://msdn.microsoft.com/en-us/library/aa367042(VS.85).aspx... -
Fiddle
:: SIZEOF _ INTPTR _ T -> Integer (12200.0) -
Cでの sizeof(intptr_t) の値
...Cでの sizeof(intptr_t) の値... -
Fiddle
:: SIZEOF _ PTRDIFF _ T -> Integer (12200.0) -
Cでの sizeof(ptrdiff_t) の値
...Cでの sizeof(ptrdiff_t) の値... -
Fiddle
:: SIZEOF _ UINTPTR _ T -> Integer (12200.0) -
Cでの sizeof(uintptr_t) の値
...Cでの sizeof(uintptr_t) の値... -
Fiddle
:: TYPE _ INTPTR _ T -> Integer (12200.0) -
C の intptr_t 型を表す定数。
...C の intptr_t 型を表す定数。... -
Fiddle
:: TYPE _ PTRDIFF _ T -> Integer (12200.0) -
C の ptrdiff_t 型を表す定数。
...C の ptrdiff_t 型を表す定数。...