X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fmsvcrt%2Fio%2Fwfind.c;h=5e2eacd99d67596149d27e2c731a515363d4aee1;hp=221a33e2e8001d75d1bd2189fa4b41d997ccad89;hb=HEAD;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/msvcrt/io/wfind.c b/lib/msvcrt/io/wfind.c index 221a33e..5e2eacd 100644 --- a/lib/msvcrt/io/wfind.c +++ b/lib/msvcrt/io/wfind.c @@ -4,6 +4,9 @@ #include +/* + * @implemented + */ int _wfindfirst(const wchar_t* _name, struct _wfinddata_t* result) { WIN32_FIND_DATAW FindFileData; @@ -45,6 +48,9 @@ int _wfindfirst(const wchar_t* _name, struct _wfinddata_t* result) return hFindFile; } +/* + * @implemented + */ int _findfirsti64(const char *_name, struct _finddatai64_t *result) { WIN32_FIND_DATAA FindFileData; @@ -90,6 +96,9 @@ int _findfirsti64(const char *_name, struct _finddatai64_t *result) return hFindFile; } +/* + * @implemented + */ int _findnexti64(int handle, struct _finddatai64_t *result) { WIN32_FIND_DATAA FindFileData; @@ -112,6 +121,9 @@ int _findnexti64(int handle, struct _finddatai64_t *result) return 0; } +/* + * @implemented + */ int _wfindfirsti64(const wchar_t *_name, struct _wfinddatai64_t *result) { WIN32_FIND_DATAW FindFileData; @@ -159,6 +171,9 @@ int _wfindfirsti64(const wchar_t *_name, struct _wfinddatai64_t *result) return hFindFile; } +/* + * @implemented + */ int _wfindnext(int handle, struct _wfinddata_t *result) { WIN32_FIND_DATAW FindFileData; @@ -180,6 +195,9 @@ int _wfindnext(int handle, struct _wfinddata_t *result) return 0; } +/* + * @implemented + */ int _wfindnexti64(int handle, struct _wfinddatai64_t *result) { WIN32_FIND_DATAW FindFileData;