From 2d04cacc5322951f187bb17e017c12920ac8ebe2 Mon Sep 17 00:00:00 2001 From: Mark Zbikowski Date: Thu, 25 Apr 2024 21:24:10 +0100 Subject: MZ is back! --- v4.0/src/TOOLS/BLD/INC/DIRECT.H | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 v4.0/src/TOOLS/BLD/INC/DIRECT.H (limited to 'v4.0/src/TOOLS/BLD/INC/DIRECT.H') diff --git a/v4.0/src/TOOLS/BLD/INC/DIRECT.H b/v4.0/src/TOOLS/BLD/INC/DIRECT.H new file mode 100644 index 0000000..2e2ebde --- /dev/null +++ b/v4.0/src/TOOLS/BLD/INC/DIRECT.H @@ -0,0 +1,24 @@ +/*** +*direct.h - function declarations for directory handling/creation +* +* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved. +* +*Purpose: +* This include file contains the function declarations for the library +* functions related to directory handling and creation. +* +*******************************************************************************/ + + +#ifndef NO_EXT_KEYS /* extensions enabled */ + #define _CDECL cdecl +#else /* extensions not enabled */ + #define _CDECL +#endif /* NO_EXT_KEYS */ + +/* function prototypes */ + +int _CDECL chdir(char *); +char * _CDECL getcwd(char *, int); +int _CDECL mkdir(char *); +int _CDECL rmdir(char *); -- cgit v1.2.3