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
cfcc4493
Commit
cfcc4493
authored
Nov 26, 2003
by
Steven Edwards
Committed by
Alexandre Julliard
Nov 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Porting fixes.
parent
811c4119
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
41 additions
and
0 deletions
+41
-0
caret.c
dlls/user/caret.c
+3
-0
focus.c
dlls/user/focus.c
+3
-0
hook.c
dlls/user/hook.c
+3
-0
lstr.c
dlls/user/lstr.c
+1
-0
painting.c
dlls/user/painting.c
+4
-0
property.c
dlls/user/property.c
+3
-0
dosvm.c
dlls/winedos/dosvm.c
+1
-0
int21.c
dlls/winedos/int21.c
+1
-0
cursoricon.c
windows/cursoricon.c
+3
-0
defwnd.c
windows/defwnd.c
+3
-0
input.c
windows/input.c
+3
-0
message.c
windows/message.c
+1
-0
painting.c
windows/painting.c
+3
-0
queue.c
windows/queue.c
+3
-0
timer.c
windows/timer.c
+3
-0
winpos.c
windows/winpos.c
+3
-0
No files found.
dlls/user/caret.c
View file @
cfcc4493
...
...
@@ -21,6 +21,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/user/focus.c
View file @
cfcc4493
...
...
@@ -20,6 +20,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/user/hook.c
View file @
cfcc4493
...
...
@@ -61,6 +61,9 @@
* WH_MOUSE_LL Implemented but should use SendMessage instead
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/user/lstr.c
View file @
cfcc4493
...
...
@@ -21,6 +21,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <ctype.h>
#include <stdarg.h>
...
...
dlls/user/painting.c
View file @
cfcc4493
...
...
@@ -18,6 +18,10 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
...
...
dlls/user/property.c
View file @
cfcc4493
...
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
...
...
dlls/winedos/dosvm.c
View file @
cfcc4493
...
...
@@ -21,6 +21,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/winedos/int21.c
View file @
cfcc4493
...
...
@@ -24,6 +24,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
...
...
windows/cursoricon.c
View file @
cfcc4493
...
...
@@ -43,6 +43,9 @@
* FIXME: what are we going to do with animation and color (bpp > 1) cursors ?!
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
...
...
windows/defwnd.c
View file @
cfcc4493
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <string.h>
#include "win.h"
...
...
windows/input.c
View file @
cfcc4493
...
...
@@ -22,6 +22,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
...
...
windows/message.c
View file @
cfcc4493
...
...
@@ -19,6 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdlib.h>
...
...
windows/painting.c
View file @
cfcc4493
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
#include "windef.h"
...
...
windows/queue.c
View file @
cfcc4493
...
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
#include <signal.h>
...
...
windows/timer.c
View file @
cfcc4493
...
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
...
...
windows/winpos.c
View file @
cfcc4493
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <string.h>
#include "winerror.h"
...
...
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