Added missing WINAPIs.

This commit is contained in:
Andreas Mohr 1999-03-28 13:13:03 +00:00 committed by Alexandre Julliard
parent 702aec677f
commit faa05bd20d
3 changed files with 5 additions and 5 deletions

View file

@ -2036,7 +2036,7 @@ VOID __cdecl CRTDLL__dllonexit ()
* wcstok (CRTDLL.519)
* Like strtok, but for wide character strings. s is modified, yes.
*/
LPWSTR CRTDLL_wcstok(LPWSTR s,LPCWSTR delim) {
LPWSTR __cdecl CRTDLL_wcstok(LPWSTR s,LPCWSTR delim) {
static LPWSTR nexttok = NULL;
LPWSTR x,ret;
@ -2060,7 +2060,7 @@ LPWSTR CRTDLL_wcstok(LPWSTR s,LPCWSTR delim) {
* wcstol (CRTDLL.520)
* Like strtol, but for wide character strings.
*/
INT CRTDLL_wcstol(LPWSTR s,LPWSTR *end,INT base) {
INT __cdecl CRTDLL_wcstol(LPWSTR s,LPWSTR *end,INT base) {
LPSTR sA = HEAP_strdupWtoA(GetProcessHeap(),0,s),endA;
INT ret = strtol(sA,&endA,base);

View file

@ -729,7 +729,7 @@ DWORD WINAPI DdeQueryStringW(DWORD idInst, HSZ hsz, LPWSTR psz, DWORD cchMax, IN
* 1.0 March 1999 K Matthews stub only
*/
DWORD DdeQueryString16(DWORD idInst, HSZ hsz, LPSTR lpsz, DWORD cchMax, int codepage)
DWORD WINAPI DdeQueryString16(DWORD idInst, HSZ hsz, LPSTR lpsz, DWORD cchMax, int codepage)
{
FIXME(ddeml,"(%ld, 0x%lx, %p, %ld, %d): stub \n",
idInst,

View file

@ -290,7 +290,7 @@ int WINAPI SysStringByteLen(BSTR str)
/******************************************************************************
* CreateDispTypeInfo [OLE2DISP.31]
*/
HRESULT CreateDispTypeInfo16(
HRESULT WINAPI CreateDispTypeInfo16(
INTERFACEDATA *pidata,
LCID lcid,
ITypeInfo **pptinfo
@ -302,7 +302,7 @@ HRESULT CreateDispTypeInfo16(
/******************************************************************************
* RegisterActiveObject [OLE2DISP.35]
*/
HRESULT RegisterActiveObject16(
HRESULT WINAPI RegisterActiveObject16(
IUnknown *punk, REFCLSID rclsid, DWORD dwFlags, unsigned long *pdwRegister
) {
char buf[80];