Skip to content
Snippets Groups Projects
Select Git revision
  • nexttest
  • 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
41 results

mlang.h

Blame
  • Forked from STJr / SRB2
    6841 commits behind, 1 commit ahead of the upstream repository.
    Alam Ed Arias's avatar
    Alam Ed Arias authored and Alam Arias committed
    b93cb1b6
    History
    mlang.h 1007 B
    HRESULT WINAPI ConvertINetString(
        LPDWORD lpdwMode,
        DWORD dwSrcEncoding,
        DWORD dwDstEncoding,
        LPCSTR lpSrcStr,
        LPINT lpnSrcSize,
        LPBYTE lpDstStr,
        LPINT lpnDstSize
    );
    
    HRESULT WINAPI ConvertINetMultiByteToUnicode(
        LPDWORD lpdwMode,
        DWORD dwSrcEncoding,
        LPCSTR lpSrcStr,
        LPINT lpnMultiCharCount,
        LPWSTR lpDstStr,
        LPINT lpnWideCharCount
    );
    
    HRESULT WINAPI ConvertINetUnicodeToMultiByte(
        LPDWORD lpdwMode,
        DWORD dwEncoding,
        LPCWSTR lpSrcStr,
        LPINT lpnWideCharCount,
        LPSTR lpDstStr,
        LPINT lpnMultiCharCount
    );
    
    HRESULT WINAPI IsConvertINetStringAvailable(
        DWORD dwSrcEncoding,
        DWORD dwDstEncoding
    );
    
    HRESULT WINAPI LcidToRfc1766A(
        LCID Locale,
        LPSTR pszRfc1766,
        int nChar
    );
    
    HRESULT WINAPI LcidToRfc1766W(
        LCID Locale,
        LPWSTR pszRfc1766,
        int nChar
    );
    
    HRESULT WINAPI Rfc1766ToLcidA(
        LCID *pLocale,
        LPSTR pszRfc1766
    );
    
    HRESULT WINAPI Rfc1766ToLcidW(
        LCID *pLocale,
        LPWSTR pszRfc1766
    );