Set DOS attributes using a for loop instead of repeating code.

This commit is contained in:
2021-03-11 04:20:58 +00:00
parent 55a32327b1
commit dc69ae015a
15 changed files with 105 additions and 294 deletions

View File

@@ -242,6 +242,12 @@ unsigned char IconEA[3516] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00};
const char *archivedAttributeText = "This file has the archived attribute set.\n";
const char *systemAttributeText = "This file has the system attribute set.\n";
const char *hiddenAttributeText = "This file has the hidden attribute set.\n";
const char *readonlyAttributeText = "This file has the read-only attribute set.\n";
const char *noAttributeText = "This file has no attribute set.\n";
#endif
#endif