2013-08-10 19:47:40 +02:00
|
|
|
#define MEMSIZE 0xA0000
|
2012-11-26 16:26:15 +01:00
|
|
|
#include "..\lib\kolibri.h"
|
2015-02-27 02:44:22 +01:00
|
|
|
#include "..\lib\mem.h"
|
|
|
|
#include "..\lib\strings.h"
|
2018-04-03 15:57:56 +02:00
|
|
|
#include "..\lib\fs.h"
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
2013-10-05 00:02:44 +02:00
|
|
|
///////////////////////// Program data ////////////////////
|
2012-11-26 16:26:15 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
struct ioctl_struct
|
|
|
|
{
|
|
|
|
dword handle;
|
|
|
|
dword io_code;
|
|
|
|
dword input;
|
|
|
|
dword inp_size;
|
|
|
|
dword output;
|
|
|
|
dword out_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEV_ADD_DISK 1 //input = structure add_disk_struc
|
|
|
|
#define DEV_DEL_DISK 2 //input = structure del_disk_struc
|
|
|
|
|
|
|
|
struct add_disk_struc
|
|
|
|
{
|
|
|
|
dword DiskSize; // in sectors, 1 sector = 512 bytes. Include FAT service data
|
|
|
|
unsigned char DiskId; // from 0 to 9
|
|
|
|
};
|
|
|
|
|
|
|
|
struct del_disk_struc
|
|
|
|
{
|
|
|
|
unsigned char DiskId; //from 0 to 9
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ioctl_struct ioctl;
|
|
|
|
add_disk_struc add_disk;
|
|
|
|
del_disk_struc del_disk;
|
|
|
|
|
|
|
|
int driver_handle;
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
2013-10-05 00:02:44 +02:00
|
|
|
///////////////////////// Code ////////////////////
|
2012-11-26 16:26:15 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "t_console.c"
|
2015-02-27 02:44:22 +01:00
|
|
|
#include "t_gui.c"
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2020-05-26 02:59:44 +02:00
|
|
|
if (! driver_handle = LoadDriver("tmpdisk"))
|
2012-11-26 16:26:15 +01:00
|
|
|
{
|
2020-04-11 17:48:27 +02:00
|
|
|
notify("'TmpDisk\nError: /rd/1/drivers/tmpdisk.obj driver loading failed\nVirtual disk wouldn't be added' -tE");
|
2012-11-26 16:26:15 +01:00
|
|
|
ExitProcess();
|
|
|
|
}
|
2013-04-02 15:33:32 +02:00
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
if (param)
|
|
|
|
Console_Work();
|
|
|
|
else
|
|
|
|
Main_Window();
|
|
|
|
|
|
|
|
ExitProcess();
|
|
|
|
}
|
|
|
|
|
|
|
|
stop:
|