Leaked source code of windows server 2003
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.
|
|
/***
*direct.h - function declarations for directory handling/creation * * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved. * *Purpose: * This include file contains the function declarations for the library * functions related to directory handling and creation. * *******************************************************************************/
#ifndef NO_EXT_KEYS /* extensions enabled */
#define _CDECL cdecl
#else /* extensions not enabled */
#define _CDECL
#endif /* NO_EXT_KEYS */
/* function prototypes */
int _CDECL chdir(char *); char * _CDECL getcwd(char *, int); int _CDECL mkdir(char *); int _CDECL rmdir(char *);
|