Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*cfinfo.c - clears C file info flag * * Copyright (c) 1989-2001, Microsoft Corporation. All rights reserved. * *Purpose: * Clears the C file info flag. By default, the openfile information * is NOT passed along to children on spawn/exec calls. If the flag * is set, openfile information WILL get passed on to children on * spawn/exec calls. * *Revision History: * 06-07-89 PHG Module created, based on asm version * 04-03-90 GJF Added #include <cruntime.h>. Also, fixed the copyright. * 01-23-92 GJF Added #include <stdlib.h> (contains decl of _fileinfo). * *******************************************************************************/
#include <cruntime.h>
#include <stdlib.h>
int _fileinfo = 0;
|