1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

added missing dos compat files to requester project

This commit is contained in:
Wei-ju Wu
2016-06-15 10:26:00 -07:00
parent ac81f8ac0b
commit 9b22fcb802
6 changed files with 402 additions and 0 deletions

13
requesters/dos_compat.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
#ifndef __DOS_COMPAT_H__
#define __DOS_COMPAT_H__
// Compatibility functions to implement 2.x functionality on 1.x systems
extern const char *dc_PathPart(const char *path);
extern const char *dc_FilePart(const char *path);
extern int dc_AddPart(char *dest_path, const char *part_to_add, int dest_size);
#endif /* __DOS_COMPAT_H__ */