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.

40 lines
552 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. );
  28. BOOL
  29. DeleteNode (
  30. IN LPCTSTR NodeName
  31. );