1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added a new callback function which can be used in programs which want

to avoid that the command line wildcard expansion takes place.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15132 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-09-15 06:58:17 +00:00
parent 927407de1b
commit 42dba39aef
6 changed files with 76 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: dos.h,v 1.24 2006-08-06 08:15:42 obarthel Exp $
* $Id: dos.h,v 1.25 2006-09-15 06:58:17 obarthel Exp $
*
* :ts=4
*
@ -487,6 +487,17 @@ extern BOOL __thread_safe_errno_h_errno;
*/
extern BOOL __expand_wildcard_args;
/*
* Similar to the boolean flag value __expand_wildcard_args described above,
* a function can be called which may be used to enable/disable wildcard
* expansion at runtime. The function is undefined by default, which means
* that the __expand_wildcard_args value will take precedence. If you want
* to override the effects of the __expand_wildcard_args variable, declare
* your own check function and then assign it to the
* __expand_wildcard_args_check pointer.
*/
extern BOOL (*__expand_wildcard_args_check)(void);
/****************************************************************************/
/*