Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
e375b0c4
Commit
e375b0c4
authored
Aug 11, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Aug 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add return statements to avoid gcc warnings.
parent
6603ad72
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
0 deletions
+6
-0
threadpool.c
dlls/ntdll/threadpool.c
+1
-0
vga.c
dlls/winedos/vga.c
+1
-0
vxd.c
dlls/winedos/vxd.c
+2
-0
audio.c
dlls/wineoss.drv/audio.c
+2
-0
No files found.
dlls/ntdll/threadpool.c
View file @
e375b0c4
...
...
@@ -258,6 +258,7 @@ static DWORD CALLBACK iocp_poller(LPVOID Arg)
callback
(
err
,
transferred
,
overlapped
);
}
}
return
0
;
}
/***********************************************************************
...
...
dlls/winedos/vga.c
View file @
e375b0c4
...
...
@@ -295,6 +295,7 @@ static void CALLBACK set_timer_rate( ULONG_PTR arg )
static
DWORD
CALLBACK
VGA_TimerThread
(
void
*
dummy
)
{
for
(;;)
SleepEx
(
INFINITE
,
TRUE
);
return
0
;
}
static
void
VGA_DeinstallTimer
(
void
)
...
...
dlls/winedos/vxd.c
View file @
e375b0c4
...
...
@@ -407,6 +407,8 @@ static DWORD CALLBACK timer_thread( void *arg )
*
system_time
=
GetTickCount
();
Sleep
(
55
);
}
return
0
;
}
...
...
dlls/wineoss.drv/audio.c
View file @
e375b0c4
...
...
@@ -1923,6 +1923,8 @@ static DWORD CALLBACK wodPlayer(LPVOID pmt)
dwNextFeedTime
=
dwNextNotifyTime
=
INFINITE
;
}
}
return
0
;
}
/**************************************************************************
...
...
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