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.

41 lines
635 B

  1. #pragma once
  2. PTSTR
  3. FindLastWack (
  4. IN PTSTR String
  5. );
  6. PTSTR
  7. DuplicateText (
  8. IN PCTSTR Text
  9. );
  10. VOID
  11. ConcatenatePaths (
  12. IN PTSTR LeadingPath,
  13. IN PCTSTR TrailingPath
  14. );
  15. BOOL
  16. DownloadProgramFiles (
  17. IN PCTSTR SourceDir,
  18. IN PCTSTR DownloadDest,
  19. IN PCTSTR* ExtraFiles
  20. );
  21. BOOL
  22. CopyNode (
  23. IN LPCTSTR SrcBaseDir,
  24. IN LPCTSTR DestBaseDir,
  25. IN LPCTSTR NodeName,
  26. IN BOOL FailIfExist,
  27. IN BOOL FailIfSourceDoesntExist
  28. );
  29. BOOL
  30. DeleteNode (
  31. IN LPCTSTR NodeName
  32. );