Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1b2dd4ba
Commit
1b2dd4ba
authored
Oct 06, 2004
by
Martin Fuchs
Committed by
Alexandre Julliard
Oct 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- remove trailing semicolons from constant definitions
- add some comments - make time_to_filetime() a static function
parent
c35c48b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
winefile.c
programs/winefile/winefile.c
+5
-3
No files found.
programs/winefile/winefile.c
View file @
1b2dd4ba
...
...
@@ -59,9 +59,9 @@
#ifdef _SHELL_FOLDERS
#define DEFAULT_SPLIT_POS 300
;
#define DEFAULT_SPLIT_POS 300
#else
#define DEFAULT_SPLIT_POS 200
;
#define DEFAULT_SPLIT_POS 200
#endif
...
...
@@ -177,6 +177,7 @@ LRESULT CALLBACK ChildWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam
LRESULT
CALLBACK
TreeWndProc
(
HWND
hwnd
,
UINT
nmsg
,
WPARAM
wparam
,
LPARAM
lparam
);
/* display error message for the specified WIN32 error code */
static
void
display_error
(
HWND
hwnd
,
DWORD
error
)
{
PTSTR
msg
;
...
...
@@ -190,6 +191,7 @@ static void display_error(HWND hwnd, DWORD error)
LocalFree
(
msg
);
}
/* allocate and initialise a directory entry */
static
Entry
*
alloc_entry
()
{
Entry
*
entry
=
(
Entry
*
)
malloc
(
sizeof
(
Entry
));
...
...
@@ -383,7 +385,7 @@ static Entry* read_tree_win(Root* root, LPCTSTR path, SORT_ORDER sortOrder, HWND
#if !defined(_NO_EXTENSIONS) && defined(__WINE__)
BOOL
time_to_filetime
(
const
time_t
*
t
,
FILETIME
*
ftime
)
static
BOOL
time_to_filetime
(
const
time_t
*
t
,
FILETIME
*
ftime
)
{
struct
tm
*
tm
=
gmtime
(
t
);
SYSTEMTIME
stime
;
...
...
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