git-svn-id: https://spexeah.com:8443/svn/Asuro@759 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
51
src/driver/storage/partitiontable.pas
Normal file
51
src/driver/storage/partitiontable.pas
Normal file
@ -0,0 +1,51 @@
|
||||
{ ************************************************
|
||||
* Asuro
|
||||
* Unit: Drivers/storage/partitontable
|
||||
* Description: partionTable
|
||||
*
|
||||
************************************************
|
||||
* Author: Aaron Hance
|
||||
* Contributors:
|
||||
************************************************ }
|
||||
|
||||
unit partitontable;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
console,
|
||||
storagemanagement,
|
||||
util, terminal,
|
||||
lmemorymanager,
|
||||
strings,
|
||||
lists,
|
||||
tracer,
|
||||
rtc;
|
||||
|
||||
type
|
||||
|
||||
TPartitonTable = record
|
||||
|
||||
end;
|
||||
PPartitonTable = ^TPartitonTable;
|
||||
|
||||
var
|
||||
location = $1BE;
|
||||
|
||||
procedure create_new(device : PStorage_Device);
|
||||
function get_table() : PPartitonTable;
|
||||
procedure add_volume(volume : TStorage_Volume);
|
||||
|
||||
implementation
|
||||
|
||||
procedure create_new(device : PStorage_Device);
|
||||
var
|
||||
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
function get_table() : PPartitonTable;
|
||||
procedure add_volume(volume : TStorage_Volume);
|
||||
|
||||
end.
|
Reference in New Issue
Block a user