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.
23 lines
1.2 KiB
23 lines
1.2 KiB
#include <windows.h>
|
|
|
|
void
|
|
IteratePathUnderlying(
|
|
WCHAR * path, /* in -path to start iterating from */
|
|
void * args, /* in -translation settings */
|
|
void * stats, /* in -stats (to display pathnames & pass to ResolveSD) */
|
|
void * LC, /* in -last container */
|
|
void * LL, /* in -last file */
|
|
BOOL haswc /* in -indicates whether path contains a wc character */
|
|
);
|
|
|
|
UINT
|
|
IteratePathUnderlyingNoObjUnwinding(
|
|
WCHAR * path, /* in -path to start iterating from */
|
|
void * args, /* in -translation settings */
|
|
void * stats, /* in -stats (to display pathnames & pass to ResolveSD) */
|
|
void * LC, /* in -last container */
|
|
void * LL, /* in -last file */
|
|
BOOL haswc, // in -indicates whether path contains a wc character
|
|
BOOL * logError
|
|
);
|
|
|