Ignore:
Timestamp:
Dec 6, 2011, 3:49:31 PM (14 years ago)
Author:
dmik
Message:

Make 5th arg of RegSetValueEx const.

For compatibility with the current MS declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/include/win32api.h

    r21717 r21852  
    4545LONG   WIN32API RegSetValueA(HKEY,LPCSTR,DWORD,LPCSTR,DWORD);
    4646LONG   WIN32API RegSetValueW(HKEY,LPCWSTR,DWORD,LPCWSTR,DWORD);
    47 LONG   WIN32API RegSetValueExA(HKEY,LPCSTR,DWORD,DWORD,LPBYTE,DWORD);
    48 LONG   WIN32API RegSetValueExW(HKEY,LPCWSTR,DWORD,DWORD,LPBYTE,DWORD);
     47LONG   WIN32API RegSetValueExA(HKEY,LPCSTR,DWORD,DWORD,const BYTE *,DWORD);
     48LONG   WIN32API RegSetValueExW(HKEY,LPCWSTR,DWORD,DWORD,const BYTE *,DWORD);
    4949
    5050DWORD  WIN32API GetModuleFileNameA(HMODULE,LPSTR,DWORD);
Note: See TracChangeset for help on using the changeset viewer.