Ticket #250: libbasic_fix_1_of_1_rev_a023e524e56e_Issue__250__Smalltak_X_is_reading_Windows_Registry_only_in_ASCII_but_registry_is_UTF16.patch

File libbasic_fix_1_of_1_rev_a023e524e56e_Issue__250__Smalltak_X_is_reading_Windows_Registry_only_in_ASCII_but_registry_is_UTF16.patch, 1018 bytes (added by patrik.svestka@…, 5 years ago)

comment fix

  • Win32OperatingSystem.st

    # HG changeset patch
    # User Patrik Svestka <patrik.svestka@gmail.com>
    # Date 1544628537 -3600
    #      Wed Dec 12 16:28:57 2018 +0100
    # Branch jv
    # Node ID defdd12cf1723b76b07b13af89ed002a3e431e70
    # Parent  a2e32cc0cdd67cfde456c40d92d07e027b5ad6b1
    Issue #250: Smalltak/X is reading Windows Registry only in ASCII but registry is UTF16
    Fixed valueNamed: comment (missing QWORD and LITTLE and BIG _ENDIAN)
    
    diff -r a2e32cc0cdd6 -r defdd12cf172 Win32OperatingSystem.st
    a b  
    1662816628
    1662916629valueNamed:nameString
    1663016630    "retrieve a value; the returned object depends upon the type:
     16631    REG_NONE        -> nil
    1663116632        REG_BINARY      -> ByteArray
    1663216633        REG_SZ          -> String
    16633         REG_MULTI_SZ    -> Array of strings
    1663416634        REG_DWORD       -> Integer
    16635         REG_NONE        -> nil
     16635        REG_QWORD       -> 64 bit Integer
     16636    REG_MULTI_SZ    -> Array of strings
    1663616637    "
    1663716638
    1663816639    |nameUtf16Z stringArray retVal errorNumber|