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
fc832f0f
Commit
fc832f0f
authored
Oct 29, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed tests to compile with MS C on Windows.
parent
7d226139
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
7 deletions
+30
-7
shlfileop.c
dlls/shell32/tests/shlfileop.c
+6
-3
sysparams.c
dlls/user/tests/sysparams.c
+6
-2
win.c
dlls/user/tests/win.c
+13
-1
http.c
dlls/wininet/tests/http.c
+5
-1
No files found.
dlls/shell32/tests/shlfileop.c
View file @
fc832f0f
...
...
@@ -18,10 +18,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "wine/test.h"
#include <stdio.h>
#include <winbase.h>
#include <shellapi.h>
#include "winbase.h"
#include "wtypes.h"
#include "shellapi.h"
#include "wine/test.h"
CHAR
CURR_DIR
[
MAX_PATH
];
...
...
dlls/user/tests/sysparams.c
View file @
fc832f0f
...
...
@@ -27,10 +27,14 @@
#include "winuser.h"
#ifndef IDI_APPLICATIONA
#define IDI_APPLICATIONA IDI_APPLICATION
#
define IDI_APPLICATIONA IDI_APPLICATION
#endif
#ifndef IDC_ARROWA
#define IDC_ARROWA IDC_ARROW
# define IDC_ARROWA IDC_ARROW
#endif
#ifndef SPI_GETDESKWALLPAPER
# define SPI_GETDESKWALLPAPER 0x0073
#endif
#define eq(received, expected, label, type) \
...
...
dlls/user/tests/win.c
View file @
fc832f0f
...
...
@@ -23,11 +23,23 @@
#include <stdlib.h>
#include <stdio.h>
#include "wine/test.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/test.h"
#ifndef IDC_ARROWA
# define IDC_ARROWA IDC_ARROW
#endif
#ifndef SPI_GETDESKWALLPAPER
#define SPI_GETDESKWALLPAPER 0x0073
#endif
#define LONG_PTR INT_PTR
#define ULONG_PTR UINT_PTR
static
HWND
(
WINAPI
*
pGetAncestor
)(
HWND
,
UINT
);
static
HWND
hwndMain
,
hwndMain2
;
...
...
dlls/wininet/tests/http.c
View file @
fc832f0f
#include "wine/test.h"
#include <stdio.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
#include "wine/test.h"
int
goon
=
0
;
VOID
WINAPI
callback
(
...
...
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