Mercurial > mplayer.hg
annotate osdep/glob.h @ 25898:b61b5a697afc
Stream IDs must be written as hex numbers. Fixes
http://wm.streampower.be/ceu/archive/CEU_COUNCIL_DELIBIRATIONS_PUBLIC_DEBATE/ceulive_1443.wmv
Patch by Peter Collingbourne pcc03 doc ic ac uk
author | rtogni |
---|---|
date | Tue, 29 Jan 2008 23:50:08 +0000 |
parents | 6ac1ece1f9fe |
children | 4129c8cfa742 |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21862
diff
changeset
|
1 #ifndef GLOB_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21862
diff
changeset
|
2 #define GLOB_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21862
diff
changeset
|
3 |
16985 | 4 #include "config.h" |
9983
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
5 |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
6 typedef struct { |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
7 size_t gl_pathc; |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
8 char **gl_pathv; |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
9 size_t gl_offs; |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
10 } glob_t; |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
11 |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
12 void globfree(glob_t *pglob); |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
13 |
14c92818ab75
alternative timer and glob emulation code for mingw32 port
faust3
parents:
diff
changeset
|
14 int glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob); |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21862
diff
changeset
|
15 |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
21862
diff
changeset
|
16 #endif /* GLOB_H */ |