diff options
Diffstat (limited to 'src/sys_public.h')
-rw-r--r-- | src/sys_public.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys_public.h b/src/sys_public.h index 76280a8..1ebf7e8 100644 --- a/src/sys_public.h +++ b/src/sys_public.h @@ -52,8 +52,8 @@ void Sys_Printf( const char *fmt, ... ) q_printf( 1, 2 ); void Sys_Error( const char *error, ... ) q_noreturn q_printf( 1, 2 ); void Sys_Quit( void ) q_noreturn; -void **Sys_ListFiles( const char *path, const char *extension, - int flags, size_t length, int *numFiles ); +void Sys_ListFiles_r( const char *path, const char *filter, + unsigned flags, size_t baselen, int *count_p, void **files, int depth ); struct file_info_s; qerror_t Sys_GetPathInfo( const char *path, struct file_info_s *info ); |