[TRANSLATIONS] Russian translation update by Sergey Stopkin and co, with some fixes...
[reactos.git] / reactos / boot / freeldr / install / install.c
index 46a48a9..ba663ce 100644 (file)
 #include <stdio.h>
 #include "install.h"
 #include "volume.h"
-#include "../bootsect/fat.h"
-#include "../bootsect/fat32.h"
+
+/*
+ * These includes are required to define
+ * the fat_data and fat32_data arrays.
+ */
+#include "fat.h"
+#include "fat32.h"
 
 BOOL    BackupBootSector(LPCTSTR lpszVolumeName);
 BOOL    InstallBootSector(LPCTSTR lpszVolumeType);
 
 int main(int argc, char *argv[])
 {
-
     if (argc < 3)
     {
         _tprintf(_T("syntax: install x: [fs_type]\nwhere fs_type is fat or fat32\n"));