mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
15 lines
391 B
C
15 lines
391 B
C
/*
|
|
* PROJECT: ReactOS DiskPart
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/system/diskpart/automount.c
|
|
* PURPOSE: Manages all the partitions of the OS in an interactive way
|
|
* PROGRAMMERS: Lee Schroeder
|
|
*/
|
|
|
|
#include "diskpart.h"
|
|
|
|
BOOL automount_main(INT argc, LPWSTR *argv)
|
|
{
|
|
printf("Automount\n");
|
|
return TRUE;
|
|
}
|