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:
@ -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);
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user