Author: dchapyshev Date: Sun Jan 25 08:30:57 2009 New Revision: 39091
URL: http://svn.reactos.org/svn/reactos?rev=39091&view=rev Log: - Add stubs for internalConfig, internalNewLocationW, internalRemoveLocation, internalRenameLocationW
Added: trunk/reactos/dll/win32/tapi32/internal.c (with props) Modified: trunk/reactos/dll/win32/tapi32/tapi32.rbuild trunk/reactos/dll/win32/tapi32/tapi32.spec
Added: trunk/reactos/dll/win32/tapi32/internal.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/tapi32/internal.c... ============================================================================== --- trunk/reactos/dll/win32/tapi32/internal.c (added) +++ trunk/reactos/dll/win32/tapi32/internal.c [iso-8859-1] Sun Jan 25 08:30:57 2009 @@ -1,0 +1,71 @@ +/* + * TAPI32 internal functions + * + * Copyright 2008 Dmitry Chapyshev + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include <string.h> +#include <stdlib.h> +#include <stdarg.h> +#include <stdio.h> +#include "windef.h" +#include "winbase.h" +#include "wingdi.h" +#include "winreg.h" +#include "winnls.h" +#include "winerror.h" +#include "objbase.h" +#include "tapi.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(tapi); + +/*********************************************************************** + * internalConfig (TAPI32.@) + */ +LONG WINAPI internalConfig(HWND hParentWnd, UINT uMsg, LPARAM lParam1, LPARAM lParam2) +{ + FIXME("internalConfig() not implemented!\n"); + return 0; +} + +/*********************************************************************** + * internalNewLocationW (TAPI32.@) + */ +DWORD WINAPI internalNewLocationW(LPWSTR lpName) +{ + FIXME("internalNewLocationW() not implemented!\n"); + return 0; +} + +/*********************************************************************** + * internalRemoveLocation (TAPI32.@) + */ +DWORD WINAPI internalRemoveLocation(DWORD dwLocationId) +{ + FIXME("internalRemoveLocation() not implemented!\n"); + return 0; +} + +/*********************************************************************** + * internalRenameLocationW (TAPI32.@) + */ +DWORD WINAPI internalRenameLocationW(WCHAR *szPrevName, WCHAR *szNewName) +{ + FIXME("internalRenameLocationW() not implemented!\n"); + return 0; +}
Propchange: trunk/reactos/dll/win32/tapi32/internal.c ------------------------------------------------------------------------------ svn:eol-style = native
Modified: trunk/reactos/dll/win32/tapi32/tapi32.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/tapi32/tapi32.rbu... ============================================================================== --- trunk/reactos/dll/win32/tapi32/tapi32.rbuild [iso-8859-1] (original) +++ trunk/reactos/dll/win32/tapi32/tapi32.rbuild [iso-8859-1] Sun Jan 25 08:30:57 2009 @@ -7,6 +7,7 @@ <include base="ReactOS">include/reactos/wine</include> <define name="__WINESRC__" /> <file>assisted.c</file> + <file>internal.c</file> <file>line.c</file> <file>phone.c</file> <library>wine</library>
Modified: trunk/reactos/dll/win32/tapi32/tapi32.spec URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/tapi32/tapi32.spe... ============================================================================== --- trunk/reactos/dll/win32/tapi32/tapi32.spec [iso-8859-1] (original) +++ trunk/reactos/dll/win32/tapi32/tapi32.spec [iso-8859-1] Sun Jan 25 08:30:57 2009 @@ -21,12 +21,12 @@ @ stub NonAsyncEventThread @ stub TAPIWndProc @ stub TUISPIDLLCallback -@ stub internalConfig +@ stdcall internalConfig(ptr long ptr ptr) @ stub internalCreateDefLocation -@ stub internalNewLocationW +@ stdcall internalNewLocationW(wstr) @ stub internalPerformance -@ stub internalRemoveLocation -@ stub internalRenameLocationW +@ stdcall internalRemoveLocation(long) +@ stdcall internalRenameLocationW(wstr wstr) @ stdcall lineAccept(long str long) @ stdcall lineAddProvider(str long ptr) lineAddProviderA @ stdcall lineAddProviderA(str long ptr)