mirror of
https://github.com/Michaelangel007/apple2_prodos_utils.git
synced 2024-12-26 14:29:15 +00:00
Default all files to Access Can destroy/rename/write/read
This commit is contained in:
parent
44522562ba
commit
ac9487c04f
@ -279,6 +279,14 @@ if( block == PRODOS_ROOT_BLOCK )
|
||||
void prodos_InitFileHeader( ProDOS_FileHeader_t *entry )
|
||||
{
|
||||
memset( entry, 0, sizeof( ProDOS_FileHeader_t ) );
|
||||
|
||||
// Default ot Read/Write/Rename/Destroy
|
||||
entry->access = 0
|
||||
| ACCESS_D
|
||||
| ACCESS_N
|
||||
| ACCESS_W
|
||||
| ACCESS_R
|
||||
;
|
||||
}
|
||||
|
||||
// Globals ________________________________________________________________
|
||||
|
Loading…
Reference in New Issue
Block a user