Debugging API wrappers in ctypes.
|
|
| PathAddBackslashA(lpszPath) |
|
|
|
|
| PathAddBackslashW(lpszPath) |
|
|
|
|
| PathAddExtensionA(lpszPath,
pszExtension=None) |
|
|
|
|
| PathAddExtensionW(lpszPath,
pszExtension=None) |
|
|
|
|
| PathAppendA(lpszPath,
pszMore=None) |
|
|
|
|
| PathAppendW(lpszPath,
pszMore=None) |
|
|
|
|
| PathCombineA(lpszDir,
lpszFile) |
|
|
|
|
| PathCombineW(lpszDir,
lpszFile) |
|
|
|
|
| PathCanonicalizeA(lpszSrc) |
|
|
|
|
| PathCanonicalizeW(lpszSrc) |
|
|
|
|
|
|
|
|
|
|
| PathFindExtensionA(pszPath) |
|
|
|
|
| PathFindExtensionW(pszPath) |
|
|
|
|
| PathFindFileNameA(pszPath) |
|
|
|
|
| PathFindFileNameW(pszPath) |
|
|
|
|
| PathFindNextComponentA(pszPath) |
|
|
|
|
| PathFindNextComponentW(pszPath) |
|
|
|
|
| PathFindOnPathA(pszFile,
ppszOtherDirs=None) |
|
|
|
|
| PathFindOnPathW(pszFile,
ppszOtherDirs=None) |
|
|
|
|
|
|
|
|
|
|
| PathIsContentTypeA(pszPath,
pszContentType) |
|
|
|
|
| PathIsContentTypeW(pszPath,
pszContentType) |
|
|
|
|
| PathIsDirectoryA(pszPath) |
|
|
|
|
| PathIsDirectoryW(pszPath) |
|
|
|
|
| PathIsDirectoryEmptyA(pszPath) |
|
|
|
|
| PathIsDirectoryEmptyW(pszPath) |
|
|
|
|
| PathIsNetworkPathA(pszPath) |
|
|
|
|
| PathIsNetworkPathW(pszPath) |
|
|
|
|
| PathIsRelativeA(lpszPath) |
|
|
|
|
| PathIsRelativeW(lpszPath) |
|
|
|
|
|
|
|
|
|
|
| PathIsSameRootA(pszPath1,
pszPath2) |
|
|
|
|
| PathIsSameRootW(pszPath1,
pszPath2) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| PathRemoveBackslashA(pszPath) |
|
|
|
|
| PathRemoveBackslashW(pszPath) |
|
|
|
|
| PathRemoveExtensionA(pszPath) |
|
|
|
|
| PathRemoveExtensionW(pszPath) |
|
|
|
|
| PathRemoveFileSpecA(pszPath) |
|
|
|
|
| PathRemoveFileSpecW(pszPath) |
|
|
|
|
| PathRenameExtensionA(pszPath,
pszExt) |
|
|
|
|
| PathRenameExtensionW(pszPath,
pszExt) |
|
|
|
|
| PathUnExpandEnvStringsA(pszPath) |
|
|
|
|
| PathUnExpandEnvStringsW(pszPath) |
|
|
|
|
__revision__ = '$Id$'
|
|
|
PathAddBackslash = GuessStringType(PathAddBackslashA, PathAddB...
|
|
|
PathAddExtension = GuessStringType(PathAddExtensionA, PathAddE...
|
|
|
PathAppend = GuessStringType(PathAppendA, PathAppendW)
|
|
|
PathCombine = GuessStringType(PathCombineA, PathCombineW)
|
|
|
PathCanonicalize = GuessStringType(PathCanonicalizeA, PathCano...
|
|
|
PathFileExists = GuessStringType(PathFileExistsA, PathFileExis...
|
|
|
PathFindExtension = GuessStringType(PathFindExtensionA, PathFi...
|
|
|
PathFindFileName = GuessStringType(PathFindFileNameA, PathFind...
|
|
|
PathFindNextComponent = GuessStringType(PathFindNextComponentA...
|
|
|
PathFindOnPath = GuessStringType(PathFindOnPathA, PathFindOnPa...
|
|
|
PathGetArgs = GuessStringType(PathGetArgsA, PathGetArgsW)
|
|
|
PathIsContentType = GuessStringType(PathIsContentTypeA, PathIs...
|
|
|
PathIsDirectory = GuessStringType(PathIsDirectoryA, PathIsDire...
|
|
|
PathIsDirectoryEmpty = GuessStringType(PathIsDirectoryEmptyA, ...
|
|
|
PathIsNetworkPath = GuessStringType(PathIsNetworkPathA, PathIs...
|
|
|
PathIsRelative = GuessStringType(PathIsRelativeA, PathIsRelati...
|
|
|
PathIsRoot = GuessStringType(PathIsRootA, PathIsRootW)
|
|
|
PathIsSameRoot = GuessStringType(PathIsSameRootA, PathIsSameRo...
|
|
|
PathIsUNC = GuessStringType(PathIsUNCA, PathIsUNCW)
|
|
|
PathMakePretty = GuessStringType(PathMakePrettyA, PathMakePret...
|
|
|
PathRemoveArgs = GuessStringType(PathRemoveArgsA, PathRemoveAr...
|
|
|
PathRemoveBackslash = GuessStringType(PathRemoveBackslashA, Pa...
|
|
|
PathRemoveExtension = GuessStringType(PathRemoveExtensionA, Pa...
|
|
|
PathRemoveFileSpec = GuessStringType(PathRemoveFileSpecA, Path...
|
|
|
PathRenameExtension = GuessStringType(PathRenameExtensionA, Pa...
|
|
|
PathUnExpandEnvStrings = GuessStringType(PathUnExpandEnvString...
|
|
|
__package__ = 'winappdbg.win32'
|