Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #define MEMSIZE 4096*20
  2. #define ENTRY_POINT #main
  3.  
  4. #include "../lib/fs.h"
  5.  
  6. void main()
  7. {
  8.         RunProgram("/kolibrios/drivers/acpi/acpi", NULL);
  9.  
  10.         pause(300);
  11.         if (file_exists("/rd/1/drivers/devices.dat")) {
  12.                 if (GetSystemLanguage()==4) {
  13.                         notify("'ACPI/APIC\n/rd/1/drivers/devices.dat ¡ë« ãᯥ譮 ᣥ­¥à¨à®¢ ­.\n“áâ ­®¢ª  ¥éñ ­¥ § ª®­ç¥­ . ‘«¥¤ã©â¥ 㪠§ ­¨ï¬ ¢ Readme!' -tdO");
  14.                 } else {
  15.                         notify("'ACPI/APIC\n/rd/1/drivers/devices.dat was succesfully generated.\nInstallation is not completed.\nFor the next steps please check Readme!' -tdO");
  16.                 }
  17.                 RunProgram("/sys/@open", "/kolibrios/drivers/acpi/readme.txt");
  18.         } else {
  19.                 notify("'Error generating /rd/1/drivers/devices.dat' -E");
  20.         }
  21.  
  22.         ExitProcess();
  23. }
  24.