るりまサーチ

最速Rubyリファレンスマニュアル検索!
384件ヒット [1-100件を表示] (0.018秒)

別のキーワード

  1. registry open
  2. registry create
  3. win32/registry new
  4. win32/registry open
  5. win32/registry create

検索結果

<< 1 2 3 ... > >>

Win32::Registry::API (21000.0)

win32/registry (6078.0)

win32/registry は Win32 プラットフォームでレジストリをアクセスするための ライブラリです。Win32 API の呼び出しに Win32API を使います。

...win32/registry は Win32 プラットフォームでレジストリをアクセスするための
ライブラリです。Win32 API の呼び出しに Win32API を使います。

//emlist{
require 'win32/registry'

Win32::Registry::HKEY_CURRENT_USER.open('SOFTWARE\foo') do |reg|
value = reg['foo'...
...込み
value = reg['foo', Win32::Registry::REG_SZ] # 型を限定した読み込み
type, value = reg.read('foo') # 値の読み込み
reg['foo'] = 'bar' # 値の書き込み
reg['foo', Win32::Registry::REG_SZ] = 'bar' # 型指定付...
...き値の書き込み
reg.write('foo', Win32::Registry::REG_SZ, 'bar') # 値の書き込み

reg.each_value { |name, type, data| ... } # 値の列挙
reg.each_key { |key, wtime| ... } # サブキーの列挙

reg.delete_value('foo') # 値の削...

Win32::Registry::API.#CloseKey(hkey) (6000.0)

@todo

@todo

Win32::Registry::API.#CreateKey(hkey, name, opt, desired) (6000.0)

@todo

@todo

Win32::Registry::API.#DeleteKey(hkey, name) (6000.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::API.#DeleteValue(hkey, name) (6000.0)

@todo

@todo

Win32::Registry::API.#EnumKey(hkey, index) (6000.0)

@todo

@todo

Win32::Registry::API.#EnumValue(hkey, index) (6000.0)

@todo

@todo

Win32::Registry::API.#FlushKey(hkey) (6000.0)

@todo

@todo
<< 1 2 3 ... > >>