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
6cc378cc
Commit
6cc378cc
authored
Aug 21, 2006
by
Mikołaj Zalewski
Committed by
Alexandre Julliard
Aug 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Show file size in the details view in kilobytes.
parent
000eddbc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pidl.c
dlls/shell32/pidl.c
+1
-1
recyclebin.c
dlls/shell32/recyclebin.c
+1
-1
No files found.
dlls/shell32/pidl.c
View file @
6cc378cc
...
...
@@ -2082,7 +2082,7 @@ DWORD _ILGetFileSize (LPCITEMIDLIST pidl, LPSTR pOut, UINT uOutSize)
case
PT_VALUE
:
dwSize
=
pdata
->
u
.
file
.
dwFileSize
;
if
(
pOut
)
StrFormat
Byte
SizeA
(
dwSize
,
pOut
,
uOutSize
);
StrFormat
KB
SizeA
(
dwSize
,
pOut
,
uOutSize
);
return
dwSize
;
}
if
(
pOut
)
...
...
dlls/shell32/recyclebin.c
View file @
6cc378cc
...
...
@@ -424,7 +424,7 @@ static HRESULT WINAPI RecycleBin_GetDetailsOf(IShellFolder2 *iface, LPCITEMIDLIS
PathRemoveFileSpecW
(
buffer
);
break
;
case
COLUMN_SIZE
:
StrFormat
Byte
SizeW
(((
LONGLONG
)
data
.
nFileSizeHigh
<<
32
)
|
data
.
nFileSizeLow
,
buffer
,
MAX_PATH
);
StrFormat
KB
SizeW
(((
LONGLONG
)
data
.
nFileSizeHigh
<<
32
)
|
data
.
nFileSizeLow
,
buffer
,
MAX_PATH
);
break
;
case
COLUMN_MTIME
:
FormatDateTime
(
buffer
,
MAX_PATH
,
data
.
ftLastWriteTime
);
...
...
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