Fix pointer signedness and missing declarations warnings.

This commit is contained in:
Hans Leidekker 2005-07-18 09:10:51 +00:00 committed by Alexandre Julliard
parent ebe8b2292a
commit f2ad5ade5c
2 changed files with 2 additions and 1 deletions

View File

@ -662,7 +662,7 @@ DWORD WINAPI lineGetTranslateCapsA(HLINEAPP hLineApp, DWORD dwAPIVersion,
if( RegCreateKeyA( hkLocations, "Location1", &hsubkey) if( RegCreateKeyA( hkLocations, "Location1", &hsubkey)
== ERROR_SUCCESS) { == ERROR_SUCCESS) {
DWORD dwval; DWORD dwval;
BYTE buf[10]; char buf[10];
numlocations = 1; numlocations = 1;
length += sizeof(LINELOCATIONENTRY) + 20 ; length += sizeof(LINELOCATIONENTRY) + 20 ;
RegSetValueExA( hsubkey, "AreaCode", 0, REG_SZ, (LPBYTE)"010", 4); RegSetValueExA( hsubkey, "AreaCode", 0, REG_SZ, (LPBYTE)"010", 4);

View File

@ -957,6 +957,7 @@ DWORD WINAPI lineSetupConferenceA(HCALL,HLINE,LPHCALL,LPHCALL,DWORD,LPLINECALLPA
DWORD WINAPI lineSetupTransferA(HCALL,LPHCALL,LPLINECALLPARAMS); DWORD WINAPI lineSetupTransferA(HCALL,LPHCALL,LPLINECALLPARAMS);
DWORD WINAPI lineTranslateAddressA(HLINEAPP,DWORD,DWORD,LPCSTR,DWORD,DWORD,LPLINETRANSLATEOUTPUT); DWORD WINAPI lineTranslateAddressA(HLINEAPP,DWORD,DWORD,LPCSTR,DWORD,DWORD,LPLINETRANSLATEOUTPUT);
DWORD WINAPI lineTranslateDialogA(HLINEAPP,DWORD,DWORD,HWND,LPCSTR); DWORD WINAPI lineTranslateDialogA(HLINEAPP,DWORD,DWORD,HWND,LPCSTR);
DWORD WINAPI lineUnhold(HCALL);
DWORD WINAPI lineUnparkA(HLINE,DWORD,LPHCALL,LPCSTR); DWORD WINAPI lineUnparkA(HLINE,DWORD,LPHCALL,LPCSTR);
/* phone functions */ /* phone functions */