62件ヒット
[1-62件を表示]
(0.037秒)
種類
- インスタンスメソッド (25)
- 定数 (19)
- モジュール関数 (9)
- 特異メソッド (8)
- クラス (1)
クラス
モジュール
キーワード
- CreateKey (1)
- DeleteKey (1)
- DeleteValue (1)
- EnumKey (1)
- EnumValue (1)
-
HKEY
_ DYN _ DATA (2) -
HKEY
_ PERFORMANCE _ DATA (2) -
KEY
_ READ (1) - OpenKey (1)
- PredefinedKey (1)
-
REG
_ CREATED _ NEW _ KEY (1) -
REG
_ DWORD (1) -
REG
_ DWORD _ BIG _ ENDIAN (1) -
REG
_ DWORD _ LITTLE _ ENDIAN (1) -
REG
_ EXPAND _ SZ (1) -
REG
_ FULL _ RESOURCE _ DESCRIPTOR (1) -
REG
_ OPENED _ EXISTING _ KEY (1) -
REG
_ OPTION _ RESERVED (1) -
REG
_ QWORD (1) -
REG
_ QWORD _ LITTLE _ ENDIAN (1) - RegDeleteKey (1)
- RegDeleteValue (1)
-
STANDARD
_ RIGHTS _ READ (1) -
STANDARD
_ RIGHTS _ WRITE (1) - SetValue (1)
-
_ dump (1) - class (1)
- close (1)
- code (1)
- create (3)
- created? (1)
- delete (1)
-
delete
_ key (1) -
delete
_ value (1) -
descriptor
_ length (1) - disposition (1)
-
max
_ key _ length (1) -
max
_ value _ length (1) -
max
_ value _ name _ length (1) - new (3)
-
num
_ keys (1) -
num
_ values (1) - open (3)
- opened? (1)
- packdw (1)
- read (1)
-
read
_ bin (1) -
read
_ i (1) -
read
_ s (1) - unpackdw (1)
- write (1)
- wtime (1)
検索結果
先頭5件
-
Win32
:: Registry # _ dump (18307.0) -
@todo
@todo -
Win32
:: Registry # created? (18307.0) -
@todo
@todo
キーが新しく作成された場合,真を返します。
(⇒Win32::Registry.create) -
Win32
:: Registry # delete(name) (18307.0) -
@todo
@todo
レジストリ値 name を削除します。
(標準) レジストリ値を削除することはできません。 -
Win32
:: Registry # delete _ key(name , recursive = false) (18307.0) -
@todo
@todo
サブキー name とそのキーが持つすべての値を削除します。
recursive が false の場合,そのサブキーはサブキーを持っていてはなりません。
true の場合,キーは再帰的に削除されます。 -
Win32
:: Registry # delete _ value(name) (18307.0) -
@todo
@todo
レジストリ値 name を削除します。
(標準) レジストリ値を削除することはできません。 -
Win32
:: Registry # descriptor _ length (18307.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # disposition (18307.0) -
@todo
@todo
キーの disposition 値を返します。
(REG_CREATED_NEW_KEY または REG_OPENED_EXISTING_KEY) -
Win32
:: Registry # opened? (18307.0) -
@todo
@todo
キーがまだ閉じられていない場合,真を返します。 -
Win32
:: Registry # read(name , *rtype) (18307.0) -
@todo
@todo
レジストリ値 name を読み,[ type, data ]
の配列で返します。
name が nil の場合,(標準) レジストリ値が読み込まれます。
type はレジストリ値の型です。(⇒Win32::Registry::Constants)
data はレジストリ値のデータで,クラスは以下の通りです:
* REG_SZ, REG_EXPAND_SZ
String
* REG_MULTI_SZ
String の配列
* REG_DWORD, REG_DWORD_BIG_ENDIAN, REG_QWORD
Integer
* REG_B... -
Win32
:: Registry # read _ bin(name) (18307.0) -
@todo
@todo
型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。
型がマッチしなかった場合,TypeError が発生します。 -
Win32
:: Registry # read _ i(name) (18307.0) -
@todo
@todo
型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。
型がマッチしなかった場合,TypeError が発生します。 -
Win32
:: Registry # read _ s(name) (18307.0) -
@todo
@todo
型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。
型がマッチしなかった場合,TypeError が発生します。 -
Win32
:: Registry # read _ s _ expand(name) (18307.0) -
@todo
@todo
型が REG_SZ または REG_EXPAND_SZ であるレジストリ値 name を読み,
その値を返します。
型が REG_EXPAND_SZ だった場合,環境変数が置換された値が返ります。
REG_SZ または REG_EXPAND_SZ 以外だった場合,TypeError が発生します。 -
Win32
:: Registry . expand _ environ(str) (18307.0) -
@todo
@todo
str の %\w+% という並びを環境変数に置換します。
REG_EXPAND_SZ で用いられます。
詳細は以下の Win32 API を参照してください。
* ExpandEnvironmentStrings: http://msdn.microsoft.com/library/en-us/sysinfo/base/expandenvironmentstrings.asp -
Win32
:: Registry :: Constants :: REG _ CREATED _ NEW _ KEY (18307.0) -
@todo
@todo
キーが新しく作られたか、既存キーが開かれたか。
Win32::Registry#disposition メソッドも参照してください。 -
Win32
:: Registry :: Constants :: REG _ OPENED _ EXISTING _ KEY (18307.0) -
@todo
@todo
キーが新しく作られたか、既存キーが開かれたか。
Win32::Registry#disposition メソッドも参照してください。 -
Win32
:: Registry :: Error # code (18307.0) -
@todo
@todo -
Win32
:: Registry :: PredefinedKey (18007.0) -
-
Win32
:: Registry :: API . # packdw(dw) (9607.0) -
@todo
@todo -
Win32
:: Registry :: API . # unpackdw(dw) (9607.0) -
@todo
@todo -
Win32
:: Registry :: API . # DeleteKey(hkey , name) (9307.0) -
@todo
@todo -
Win32
:: Registry :: API . # DeleteValue(hkey , name) (9307.0) -
@todo
@todo -
Win32
:: Registry :: API :: RegDeleteKey (9307.0) -
@todo
@todo -
Win32
:: Registry :: API :: RegDeleteValue (9307.0) -
@todo
@todo -
Win32
:: Registry :: Constants :: HKEY _ DYN _ DATA (9307.0) -
@todo
@todo
定義済キー値。
これらは Integer で、Win32::Registry オブジェクトではありません。 -
Win32
:: Registry :: Constants :: HKEY _ PERFORMANCE _ DATA (9307.0) -
@todo
@todo
定義済キー値。
これらは Integer で、Win32::Registry オブジェクトではありません。 -
Win32
:: Registry :: Constants :: KEY _ READ (9307.0) -
@todo
@todo
セキュリティアクセスマスク。 -
Win32
:: Registry :: Constants :: REG _ DWORD (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ DWORD _ BIG _ ENDIAN (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ DWORD _ LITTLE _ ENDIAN (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ EXPAND _ SZ (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ FULL _ RESOURCE _ DESCRIPTOR (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ OPTION _ RESERVED (9307.0) -
@todo
@todo -
Win32
:: Registry :: Constants :: REG _ QWORD (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: REG _ QWORD _ LITTLE _ ENDIAN (9307.0) -
@todo
@todo
レジストリ値の型。 -
Win32
:: Registry :: Constants :: STANDARD _ RIGHTS _ READ (9307.0) -
@todo
@todo
セキュリティアクセスマスク。 -
Win32
:: Registry :: Constants :: STANDARD _ RIGHTS _ WRITE (9307.0) -
@todo
@todo
セキュリティアクセスマスク。 -
Win32
:: Registry :: HKEY _ DYN _ DATA -> Win32 :: Registry (9307.0) -
@todo
@todo
それぞれの定義済キーを表す Win32::Registry オブジェクトです。
詳細は以下の MSDN Library を参照してください。
* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp -
Win32
:: Registry :: HKEY _ PERFORMANCE _ DATA -> Win32 :: Registry (9307.0) -
@todo
@todo
それぞれの定義済キーを表す Win32::Registry オブジェクトです。
詳細は以下の MSDN Library を参照してください。
* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp -
Win32
:: Registry # max _ key _ length (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # max _ value _ length (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # max _ value _ name _ length (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # num _ keys (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # num _ values (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry # wtime (9007.0) -
@todo
@todo
キー情報の個々の値を返します。 -
Win32
:: Registry :: PredefinedKey # class (9007.0) -
@todo
@todo -
Win32
:: Registry :: PredefinedKey # close (9007.0) -
@todo
@todo -
Win32
:: Registry :: PredefinedKey . new(hkey , keyname) (9007.0) -
@todo
@todo -
Win32
:: Registry # create(subkey , desired = KEY _ ALL _ ACCESS , opt = REG _ OPTION _ RESERVED) (307.0) -
@todo
@todo
Win32::Registry.create(self, subkey, desired, opt) と同じです。 -
Win32
:: Registry # open(subkey , desired = KEY _ READ , opt = REG _ OPTION _ RESERVED) (307.0) -
@todo
@todo
Win32::Registry.open(self, subkey, desired, opt) と同じです。 -
Win32
:: Registry # write(name , type , data) (307.0) -
@todo
@todo
レジストリ値 name に型 type で data を書き込みます。
name が nil の場合,(標準) レジストリ値に書き込みます。
type はレジストリ値の型です。(⇒Win32::Registry::Constants)
data のクラスは Win32::Registry#read
メソッドに準じていなければなりません。 -
Win32
:: Registry . create(key , subkey , desired = KEY _ ALL _ ACCESS , opt = REG _ OPTION _ RESERVED) (307.0) -
@todo
@todo
レジストリキー key 下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
サブキーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。
ブロックが与えられると,キーは自動的に閉じられます。 -
Win32
:: Registry . create(key , subkey , desired = KEY _ ALL _ ACCESS , opt = REG _ OPTION _ RESERVED) {|reg| . . . } (307.0) -
@todo
@todo
レジストリキー key 下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
サブキーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。
ブロックが与えられると,キーは自動的に閉じられます。 -
Win32
:: Registry . new(key , subkey , desired = KEY _ READ , opt = REG _ OPTION _ RESERVED) (307.0) -
@todo
@todo
レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。
* Registry Key Security and Access Rights: http://msdn.mic... -
Win32
:: Registry . new(key , subkey , desired = KEY _ READ , opt = REG _ OPTION _ RESERVED) {|reg| . . . } (307.0) -
@todo
@todo
レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。
* Registry Key Security and Access Rights: http://msdn.mic... -
Win32
:: Registry . open(key , subkey , desired = KEY _ READ , opt = REG _ OPTION _ RESERVED) (307.0) -
@todo
@todo
レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。
* Registry Key Security and Access Rights: http://msdn.mic... -
Win32
:: Registry . open(key , subkey , desired = KEY _ READ , opt = REG _ OPTION _ RESERVED) {|reg| . . . } (307.0) -
@todo
@todo
レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)
desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。
* Registry Key Security and Access Rights: http://msdn.mic... -
Win32
:: Registry :: API . # CreateKey(hkey , name , opt , desired) (307.0) -
@todo
@todo -
Win32
:: Registry :: API . # EnumKey(hkey , index) (307.0) -
@todo
@todo -
Win32
:: Registry :: API . # EnumValue(hkey , index) (307.0) -
@todo
@todo -
Win32
:: Registry :: API . # OpenKey(hkey , name , opt , desired) (307.0) -
@todo
@todo -
Win32
:: Registry :: API . # SetValue(hkey , name , type , data , size) (307.0) -
@todo
@todo