Fix pointer signedness and missing declarations warnings.
diff --git a/dlls/tapi32/line.c b/dlls/tapi32/line.c
index 9ee892b..7c8f66b 100644
--- a/dlls/tapi32/line.c
+++ b/dlls/tapi32/line.c
@@ -662,7 +662,7 @@
if( RegCreateKeyA( hkLocations, "Location1", &hsubkey)
== ERROR_SUCCESS) {
DWORD dwval;
- BYTE buf[10];
+ char buf[10];
numlocations = 1;
length += sizeof(LINELOCATIONENTRY) + 20 ;
RegSetValueExA( hsubkey, "AreaCode", 0, REG_SZ, (LPBYTE)"010", 4);
diff --git a/include/tapi.h b/include/tapi.h
index 5e08bb5..8a6e139 100644
--- a/include/tapi.h
+++ b/include/tapi.h
@@ -957,6 +957,7 @@
DWORD WINAPI lineSetupTransferA(HCALL,LPHCALL,LPLINECALLPARAMS);
DWORD WINAPI lineTranslateAddressA(HLINEAPP,DWORD,DWORD,LPCSTR,DWORD,DWORD,LPLINETRANSLATEOUTPUT);
DWORD WINAPI lineTranslateDialogA(HLINEAPP,DWORD,DWORD,HWND,LPCSTR);
+DWORD WINAPI lineUnhold(HCALL);
DWORD WINAPI lineUnparkA(HLINE,DWORD,LPHCALL,LPCSTR);
/* phone functions */