[ros-diffs] [dchapyshev] 39463: - Stub implement DeleteProfileA/W

dchapyshev at svn.reactos.org dchapyshev at svn.reactos.org
Sat Feb 7 19:31:02 CET 2009


Author: dchapyshev
Date: Sat Feb  7 12:31:01 2009
New Revision: 39463

URL: http://svn.reactos.org/svn/reactos?rev=39463&view=rev
Log:
- Stub implement DeleteProfileA/W

Modified:
    trunk/reactos/dll/win32/userenv/profile.c
    trunk/reactos/dll/win32/userenv/userenv.def

Modified: trunk/reactos/dll/win32/userenv/profile.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/userenv/profile.c?rev=39463&r1=39462&r2=39463&view=diff
==============================================================================
--- trunk/reactos/dll/win32/userenv/profile.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/userenv/profile.c [iso-8859-1] Sat Feb  7 12:31:01 2009
@@ -1134,4 +1134,22 @@
   return TRUE;
 }
 
+BOOL WINAPI
+DeleteProfileW(LPCWSTR lpSidString,
+               LPCWSTR lpProfilePath,
+               LPCWSTR lpComputerName)
+{
+   DPRINT1("DeleteProfileW() not implemented!\n");
+   return FALSE;
+}
+
+BOOL WINAPI
+DeleteProfileA(LPCSTR lpSidString,
+               LPCSTR lpProfilePath,
+               LPCSTR lpComputerName)
+{
+   DPRINT1("DeleteProfileA() not implemented!\n");
+   return FALSE;
+}
+
 /* EOF */

Modified: trunk/reactos/dll/win32/userenv/userenv.def
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/userenv/userenv.def?rev=39463&r1=39462&r2=39463&view=diff
==============================================================================
--- trunk/reactos/dll/win32/userenv/userenv.def [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/userenv/userenv.def [iso-8859-1] Sat Feb  7 12:31:01 2009
@@ -17,6 +17,8 @@
 AddDesktopItemW at 32 @114 NONAME
 DeleteDesktopItemA at 8 @115 NONAME
 DeleteDesktopItemW at 8 @116 NONAME
+DeleteProfileW at 12
+DeleteProfileA at 12
 CreateEnvironmentBlock at 12
 DestroyEnvironmentBlock at 4
 EnterCriticalPolicySection at 4



More information about the Ros-diffs mailing list