|
@@ -1,3 +1,6 @@
|
|
|
|
|
+#ifndef INCL_PHYSFSEXT_GLOBBING_H
|
|
|
|
|
+#define INCL_PHYSFSEXT_GLOBBING_H
|
|
|
|
|
+
|
|
|
/** \file globbing.h */
|
|
/** \file globbing.h */
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -30,6 +33,9 @@
|
|
|
* \author Ryan C. Gordon.
|
|
* \author Ryan C. Gordon.
|
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
|
|
+#ifdef __cplusplus
|
|
|
|
|
+extern "C" {
|
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* \fn char **PHYSFS_enumerateFilesWildcard(const char *dir, const char *wildcard, int caseSensitive)
|
|
* \fn char **PHYSFS_enumerateFilesWildcard(const char *dir, const char *wildcard, int caseSensitive)
|
|
@@ -73,5 +79,11 @@ __EXPORT__ char **PHYSFSEXT_enumerateFilesWildcard(const char *dir,
|
|
|
const char *wildcard,
|
|
const char *wildcard,
|
|
|
int caseSensitive);
|
|
int caseSensitive);
|
|
|
|
|
|
|
|
|
|
+#ifdef __cplusplus
|
|
|
|
|
+}
|
|
|
|
|
+#endif
|
|
|
|
|
+
|
|
|
|
|
+#endif /* include-once blocker. */
|
|
|
|
|
+
|
|
|
/* end of globbing.h ... */
|
|
/* end of globbing.h ... */
|
|
|
|
|
|