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
|