mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 17:00:31 +00:00
fixed a function declaration
some minor formatting changes svn path=/trunk/; revision=24801
This commit is contained in:
parent
f0e69a1925
commit
d26cca517a
2 changed files with 18 additions and 18 deletions
|
@ -231,7 +231,7 @@ GetServices ( void )
|
||||||
wsprintf(szStrFileInfo, _T("StringFileInfo\\%04X%04X\\CompanyName"), wCodePage, wLangID);
|
wsprintf(szStrFileInfo, _T("StringFileInfo\\%04X%04X\\CompanyName"), wCodePage, wLangID);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (VerQueryValue (lpData, szStrFileInfo, (LPVOID) &lpBuffer, (PUINT) &BufLen))
|
if (VerQueryValue (lpData, szStrFileInfo, (void**) &lpBuffer, (PUINT) &BufLen))
|
||||||
{
|
{
|
||||||
item.pszText = lpBuffer;
|
item.pszText = lpBuffer;
|
||||||
item.iSubItem = 2;
|
item.iSubItem = 2;
|
||||||
|
|
|
@ -14,7 +14,7 @@ HWND hStartupListCtrl;
|
||||||
HWND hStartupDialog;
|
HWND hStartupDialog;
|
||||||
|
|
||||||
void GetAutostartEntriesFromRegistry ( HKEY hRootKey, TCHAR* KeyName );
|
void GetAutostartEntriesFromRegistry ( HKEY hRootKey, TCHAR* KeyName );
|
||||||
void GetDisabledAutostartEntriesFromRegistry ();
|
void GetDisabledAutostartEntriesFromRegistry (TCHAR * szBasePath);
|
||||||
|
|
||||||
INT_PTR CALLBACK
|
INT_PTR CALLBACK
|
||||||
StartupPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
StartupPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
|
|
Loading…
Reference in a new issue