Reactos
at master 17 lines 390 B view raw
1/* 2 * PROJECT: ReactOS DiskPart 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: base/system/diskpart/attach.c 5 * PURPOSE: Manages all the partitions of the OS in an interactive way. 6 * PROGRAMMERS: Lee Schroeder 7 */ 8 9#include "diskpart.h" 10 11EXIT_CODE 12attach_main( 13 _In_ INT argc, 14 _In_ PWSTR *argv) 15{ 16 return EXIT_SUCCESS; 17}