/*
* Compile-time and run-time interface between gpr and libexpr
*/
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
agbindrec(ep, UDATA, sizeof(edata), 0);
return ep;
}
-
-
return state;
}
+
+#ifdef WIN32
int pathisrelative (char* path)
{
-#ifdef WIN32
- return PathIsRelative(path);
-#else
- return 0; /*FIX ME:code this part for UNIX*/
-#endif
-
+ return PathIsRelative(path);
}
+#endif
extern void initGPRState(Gpr_t *, Vmalloc_t *, gpr_info *);
extern int validTVT(int);
+#ifdef WIN32
+ extern int pathisrelative (char* path);
+#endif
+
#endif
#ifdef __cplusplus