Results 1 to 5 of 5

Thread: WinLUAEx 1.0.9 Released

Hybrid View

  1. #1
    Join Date
    Feb 2001
    Location
    Plano, TX, USA
    Posts
    3,055

    Default WinLUAEx 1.0.9 Released

    Contains a bug fix for numeric registry values.
    Adds support for Binary registry data.

    Download

    Source
    Mark F

  2. #2
    Join Date
    Feb 2001
    Location
    Plano, TX, USA
    Posts
    3,055

    Default

    Binary registry data is accessed using a table.

    To write a set of binary data to the registry, break it into BYTES (8-bit values) in a table and set the n index to the number of valid bytes. Like this:
    Code:
    array[1] = 20
    array[2] = 16
    array[3] = 78
    array[4] = 196
    array["n"] = 4
    Then use the standard write routine on a created registry object. Like this:
    Code:
    RegObj.Write("MyVariable", array)
    To read a set of binary registry data, use the standard read routine on an opened registry object. Like this:
    Code:
    array, error = RegObj.Read("MyVariable")
    If error is 0, array is a table with the data in it and array["n"] is the number of valid entries (one byte each).
    Mark F

  3. #3
    father of monstermagnet Guest

    Default

    Hello,

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\Directory\shell\Irfanview]
    
    [HKEY_CLASSES_ROOT\Directory\shell\Irfanview\command]
    @="\"C:\\Progra~1\\irfanview\\i_view32.exe\" \"%L /hide=15 /fs\""
    How can i add this to the registry ?

    Thanks

  4. #4
    Join Date
    Feb 2001
    Location
    Plano, TX, USA
    Posts
    3,055

    Default

    These registry functions do not support HKEY_CLASSES_ROOT. Sorry.

    EDIT: By the way, supporting all the defined HKEY_* classes looks like a possible project for me for next weekend.
    Mark F

  5. #5
    Join Date
    Feb 2001
    Location
    Plano, TX, USA
    Posts
    3,055

    Default

    I added this to WinLUAEx 1.0.10 this morning.

    See this thread.
    Mark F

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •