mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
19 lines
201 B
C
19 lines
201 B
C
|
#ifndef _LISTFILES_H_
|
||
|
#define _LISTFILES_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
char alldirfiles[300][70];
|
||
|
|
||
|
int GetFiles(char * filespath);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|