Skip to content
Snippets Groups Projects
Select Git revision
  • next default protected
  • removetwohundredandsixty
  • bosszero
  • weaponshadow
  • cleanupmusic
  • udmf-texture-scaling
  • levelstruct
  • polybsp
  • tc
  • udmf-nophysicsequation
  • udmf-absolutez
  • showinput
  • bbox
  • plinedefexectutefix
  • increasemaxunlockables
  • master
  • 2211-rc1
  • font_drawer
  • 2211-pre2
  • platformpmomz
  • SRB2_release_2.2.11
  • SRB2_release_2.2.10
  • SRB2_release_2.2.9
  • SRB2_release_2.2.8
  • SRB2_release_2.2.7
  • SRB2_release_2.2.6
  • SRB2_release_2.2.5
  • SRB2_release_2.2.4
  • SRB2_release_2.2.3
  • SRB2_release_2.2.2
  • SRB2_release_2.2.1
  • SRB2_release_2.2.0
  • SRB2_release_2.1.25
  • SRB2_release_2.1.24
  • SRB2_release_2.1.23
  • SRB2_release_2.1.22
  • SRB2_release_2.1.21
  • SRB2_release_2.1.20
  • SRB2_release_2.1.19
  • SRB2_release_2.1.18
40 results

win-iconv

  • Clone with SSH
  • Clone with HTTPS
  • Forked from STJr / SRB2
    6698 commits behind, 1 commit ahead of the upstream repository.
    Alam Ed Arias's avatar
    Alam Ed Arias authored and Alam Arias committed
    b93cb1b6
    History
    win_iconv is a iconv implementation using Win32 API to convert.
    
    win_iconv is placed in the public domain.
    
    ENVIRONMENT VARIABLE:
        WINICONV_LIBICONV_DLL
            If $WINICONV_LIBICONV_DLL is set, win_iconv uses the DLL.  If
            loading the DLL or iconv_open() failed, falls back to internal
            conversion.  If a few DLL are specified as comma separated list,
            the first loadable DLL is used.  The DLL should have
            iconv_open(), iconv_close() and iconv().  Or libiconv_open(),
            libiconv_close() and libiconv().
            (only available when USE_LIBICONV_DLL is defined at compile time)
    
    Win32 API does not support strict encoding conversion for some codepage.
    And MLang function drop or replace invalid bytes and does not return
    useful error status as iconv.  This implementation cannot be used for
    encoding validation purpose.
    
    Yukihiro Nakadaira <yukihiro.nakadaira@gmail.com>