| cvs.gedasymbols.org/djgpp/doc/libc/libc_356.html | search | 
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
#include <sys/fsext.h> int __FSEXT_add_open_handler(__FSEXT_Function *_function);  | 
This function is part of the File System Extensions.  It is used
to add a handler for functions that do not get passed descriptors,
such as _open and _creat.
| ANSI/ISO C | No | 
| POSIX | No | 
static int
_my_handler(__FSEXT_Fnumber n, int *rv, va_list args)
{
  . . .
}
int main()
{
  __FSEXT_add_open_handler(_my_handler);
}
 | 
| webmaster | delorie software privacy | 
| Copyright © 2004 | Updated Apr 2004 |