[SYSSETUP][SHORTCUTS.INF] Add FontSub program shortcut to Start Menu. Patch by Kataya...
[reactos.git] / reactos / dll / win32 / syssetup / install.c
index 7036f9b..2243b89 100644 (file)
@@ -1273,6 +1273,20 @@ InstallReactOS(VOID)
 
     SetupCloseInfFile(hShortcutsInf);
 
+    hShortcutsInf = SetupOpenInfFileW(L"rosapps_shortcuts.inf",
+                                       NULL,
+                                       INF_STYLE_WIN4,
+                                       NULL);
+    if (hShortcutsInf != INVALID_HANDLE_VALUE)
+    {
+        if (!CreateShortcuts(hShortcutsInf, L"ShortcutFolders"))
+        {
+            FatalError("CreateShortcuts(rosapps) failed");
+            return 0;
+        }
+        SetupCloseInfFile(hShortcutsInf);
+    }
+
     SetupCloseInfFile(hSysSetupInf);
     SetSetupType(0);