- new icons for all control panel applets.
[reactos.git] / reactos / subsys / smss / initmv.c
1 /* $Id$
2 *
3 * initmv.c - Process the file rename list
4 *
5 * ReactOS Operating System
6 *
7 * --------------------------------------------------------------------
8 *
9 * This software is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This software is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this software; see the file COPYING.LIB. If not, write
21 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
22 * MA 02139, USA.
23 *
24 * --------------------------------------------------------------------
25 */
26
27
28 #include "smss.h"
29
30 #define NDEBUG
31 #include <debug.h>
32
33 NTSTATUS
34 SmProcessFileRenameList(VOID)
35 {
36 DPRINT("SmProcessFileRenameList() called\n");
37
38 /* FIXME: implement it! */
39 /*
40 * open HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\FileRenameOperations
41 * for each item in its value
42 * clone the old file in the new name,
43 * delete the source.
44 *
45 */
46
47 DPRINT("SmProcessFileRenameList() done\n");
48
49 return(STATUS_SUCCESS);
50 }
51
52 /* EOF */