| www.delorie.com/djgpp/doc/libc-2.01/libc_298.html | search |
#include <sys/fsext.h> int __FSEXT_add_open_handler(__FSEXT_Function *_function);
This function is part of the section File System Extensions. It is used
to add a handler for functions that do not get passed descriptors,
such as _open and _creat.
static int
_my_handler(__FSEXT_Fnumber n, int *rv, va_list args)
{
. . .
}
int main()
{
__FSEXT_add_open_handler(_my_handler);
}
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |