mirror of https://github.com/tongzx/nt5src
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
40 lines
552 B
#pragma once
|
|
|
|
|
|
|
|
PTSTR
|
|
FindLastWack (
|
|
IN PTSTR String
|
|
);
|
|
|
|
|
|
PTSTR
|
|
DuplicateText (
|
|
IN PCTSTR Text
|
|
);
|
|
|
|
VOID
|
|
ConcatenatePaths (
|
|
IN PTSTR LeadingPath,
|
|
IN PCTSTR TrailingPath
|
|
);
|
|
|
|
BOOL
|
|
DownloadProgramFiles (
|
|
IN PCTSTR SourceDir,
|
|
IN PCTSTR DownloadDest,
|
|
IN PCTSTR* ExtraFiles
|
|
);
|
|
|
|
BOOL
|
|
CopyNode (
|
|
IN LPCTSTR SrcBaseDir,
|
|
IN LPCTSTR DestBaseDir,
|
|
IN LPCTSTR NodeName,
|
|
IN BOOL FailIfExist
|
|
);
|
|
|
|
BOOL
|
|
DeleteNode (
|
|
IN LPCTSTR NodeName
|
|
);
|