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.

24 lines
690 B

  1. /***
  2. *direct.h - function declarations for directory handling/creation
  3. *
  4. * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This include file contains the function declarations for the library
  8. * functions related to directory handling and creation.
  9. *
  10. *******************************************************************************/
  11. #ifndef NO_EXT_KEYS /* extensions enabled */
  12. #define _CDECL cdecl
  13. #else /* extensions not enabled */
  14. #define _CDECL
  15. #endif /* NO_EXT_KEYS */
  16. /* function prototypes */
  17. int _CDECL chdir(char *);
  18. char * _CDECL getcwd(char *, int);
  19. int _CDECL mkdir(char *);
  20. int _CDECL rmdir(char *);