mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-12 13:37:45 -04:00

Co-authored-by: Max Logaev <maxlogaev@proton.me> Reviewed-on: https://git.kolibrios.org/KolibriOS/kolibrios/pulls/175 Reviewed-by: Max Logaev <maxlogaev@proton.me> Co-authored-by: leency <lipatov.kiril@gmail.com> Co-committed-by: leency <lipatov.kiril@gmail.com>
14 lines
272 B
C
14 lines
272 B
C
#define MEMSIZE 1024*20
|
|
#define ENTRY_POINT #main
|
|
|
|
#include "../lib/fs.h"
|
|
|
|
void main()
|
|
{
|
|
char param2[4096];
|
|
strcpy(#param2, "\\s ");
|
|
strncpy(#param2 + 3, #param, sizeof(param2) - 2 - 3);
|
|
RunProgram("/sys/File managers/Eolite", #param2);
|
|
ExitProcess();
|
|
}
|