* glob_pattern_p.cc: New file.

* Makefile.in (DLL_OFILES): Add glob_pattern_p.o.
* glob.h: Add declaration for glob_pattern_p.
* pinfo.cc (pinfo::thisproc): Remove __stdcall attribute.
This commit is contained in:
Christopher Faylor
2008-12-31 21:33:34 +00:00
parent 762cf3ee22
commit ecd5bc4ea8
6 changed files with 53 additions and 16 deletions

View File

@ -109,8 +109,9 @@ __BEGIN_DECLS
# define DLLEXPORT __declspec(dllimport)
#endif
int DLLEXPORT glob(const char *, int, int (*)(const char *, int), glob_t *);
void DLLEXPORT globfree(glob_t *);
int DLLEXPORT glob (const char *, int, int (*)(const char *, int), glob_t *);
void DLLEXPORT globfree (glob_t *);
int DLLEXPORT glob_pattern_p (const char *, int);
__END_DECLS
#endif /* !_GLOB_H_ */