Define DOS attribute macros for Borlanc C++ / Turbo C.

This commit is contained in:
2021-04-06 04:11:10 +01:00
parent 8424af120c
commit 1ff94143a2

View File

@@ -27,6 +27,14 @@ Copyright (C) 2011-2021 Natalia Portillo
#include <dos.h>
#if defined(__TURBOC__)
#define _A_NORMAL FA_NORMAL /* Normal file, no attributes */
#define _A_RDONLY FA_RDONLY /* Read only attribute */
#define _A_HIDDEN FA_HIDDEN /* Hidden file */
#define _A_SYSTEM FA_SYSTEM /* System file */
#define _A_ARCH FA_ARCH /* Archive */
#endif
typedef struct
{
char filename[9];