Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
fe0460fd
Commit
fe0460fd
authored
May 22, 2004
by
Christian Costa
Committed by
Alexandre Julliard
May 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some traces to kernel file functions.
parent
eb04fd22
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
file.c
dlls/kernel/file.c
+12
-0
No files found.
dlls/kernel/file.c
View file @
fe0460fd
...
@@ -1398,6 +1398,8 @@ HANDLE WINAPI FindFirstFileExW( LPCWSTR filename, FINDEX_INFO_LEVELS level,
...
@@ -1398,6 +1398,8 @@ HANDLE WINAPI FindFirstFileExW( LPCWSTR filename, FINDEX_INFO_LEVELS level,
IO_STATUS_BLOCK
io
;
IO_STATUS_BLOCK
io
;
NTSTATUS
status
;
NTSTATUS
status
;
TRACE
(
"%s %d %p %d %p %lx
\n
"
,
debugstr_w
(
filename
),
level
,
data
,
search_op
,
filter
,
flags
);
if
((
search_op
!=
FindExSearchNameMatch
)
||
(
flags
!=
0
))
if
((
search_op
!=
FindExSearchNameMatch
)
||
(
flags
!=
0
))
{
{
FIXME
(
"options not implemented 0x%08x 0x%08lx
\n
"
,
search_op
,
flags
);
FIXME
(
"options not implemented 0x%08x 0x%08lx
\n
"
,
search_op
,
flags
);
...
@@ -1495,6 +1497,8 @@ BOOL WINAPI FindNextFileW( HANDLE handle, WIN32_FIND_DATAW *data )
...
@@ -1495,6 +1497,8 @@ BOOL WINAPI FindNextFileW( HANDLE handle, WIN32_FIND_DATAW *data )
FILE_BOTH_DIR_INFORMATION
*
dir_info
;
FILE_BOTH_DIR_INFORMATION
*
dir_info
;
BOOL
ret
=
FALSE
;
BOOL
ret
=
FALSE
;
TRACE
(
"%p %p
\n
"
,
handle
,
data
);
if
(
handle
==
INVALID_HANDLE_VALUE
)
if
(
handle
==
INVALID_HANDLE_VALUE
)
{
{
SetLastError
(
ERROR_INVALID_HANDLE
);
SetLastError
(
ERROR_INVALID_HANDLE
);
...
@@ -1679,6 +1683,8 @@ DWORD WINAPI GetFileAttributesW( LPCWSTR name )
...
@@ -1679,6 +1683,8 @@ DWORD WINAPI GetFileAttributesW( LPCWSTR name )
OBJECT_ATTRIBUTES
attr
;
OBJECT_ATTRIBUTES
attr
;
NTSTATUS
status
;
NTSTATUS
status
;
TRACE
(
"%s
\n
"
,
debugstr_w
(
name
));
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
{
{
SetLastError
(
ERROR_PATH_NOT_FOUND
);
SetLastError
(
ERROR_PATH_NOT_FOUND
);
...
@@ -1728,6 +1734,8 @@ BOOL WINAPI SetFileAttributesW( LPCWSTR name, DWORD attributes )
...
@@ -1728,6 +1734,8 @@ BOOL WINAPI SetFileAttributesW( LPCWSTR name, DWORD attributes )
NTSTATUS
status
;
NTSTATUS
status
;
HANDLE
handle
;
HANDLE
handle
;
TRACE
(
"%s %lx
\n
"
,
debugstr_w
(
name
),
attributes
);
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
{
{
SetLastError
(
ERROR_PATH_NOT_FOUND
);
SetLastError
(
ERROR_PATH_NOT_FOUND
);
...
@@ -1783,6 +1791,8 @@ BOOL WINAPI GetFileAttributesExW( LPCWSTR name, GET_FILEEX_INFO_LEVELS level, LP
...
@@ -1783,6 +1791,8 @@ BOOL WINAPI GetFileAttributesExW( LPCWSTR name, GET_FILEEX_INFO_LEVELS level, LP
OBJECT_ATTRIBUTES
attr
;
OBJECT_ATTRIBUTES
attr
;
NTSTATUS
status
;
NTSTATUS
status
;
TRACE
(
"%s %d %p
\n
"
,
debugstr_w
(
name
),
level
,
ptr
);
if
(
level
!=
GetFileExInfoStandard
)
if
(
level
!=
GetFileExInfoStandard
)
{
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
...
@@ -1854,6 +1864,8 @@ DWORD WINAPI GetCompressedFileSizeW(
...
@@ -1854,6 +1864,8 @@ DWORD WINAPI GetCompressedFileSizeW(
HANDLE
handle
;
HANDLE
handle
;
DWORD
ret
=
INVALID_FILE_SIZE
;
DWORD
ret
=
INVALID_FILE_SIZE
;
TRACE
(
"%s %p
\n
"
,
debugstr_w
(
name
),
size_high
);
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
if
(
!
RtlDosPathNameToNtPathName_U
(
name
,
&
nt_name
,
NULL
,
NULL
))
{
{
SetLastError
(
ERROR_PATH_NOT_FOUND
);
SetLastError
(
ERROR_PATH_NOT_FOUND
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment