amiga-stuff/requesters/dos13.h

18 lines
453 B
C

// dos13 - a module for DOS 1.x interaction
#pragma once
#ifndef __DOS13_H__
#define __DOS13_H__
#include "file_list.h"
/*
* Scans the specified directory and returns the entries, if dirpath is NULL,
* returns the list of all logical volumes.
*/
extern struct FileListEntry *scan_dir(const char *dirpath, int *num_entries);
/* free the resources allocated in the specified entry list */
void free_file_list(struct FileListEntry *entries);
#endif