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
aa97c30b
Commit
aa97c30b
authored
Jun 20, 2019
by
Fabian Maurer
Committed by
Alexandre Julliard
Jun 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add sxs tests.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
42d2477e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
actctx.c
dlls/kernel32/tests/actctx.c
+0
-0
dummy.c
dlls/kernel32/tests/dummy.c
+20
-1
dummy.spec
dlls/kernel32/tests/dummy.spec
+1
-1
No files found.
dlls/kernel32/tests/actctx.c
View file @
aa97c30b
This diff is collapsed.
Click to expand it.
dlls/kernel32/tests/dummy.c
View file @
aa97c30b
/* nothing here */
#include <windows.h>
static
HINSTANCE
instance
;
BOOL
WINAPI
DllMain
(
HINSTANCE
instance_new
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
instance
=
instance_new
;
break
;
}
return
TRUE
;
}
WINAPI
void
get_path
(
char
*
buffer
,
int
buffer_size
)
{
GetModuleFileNameA
(
instance
,
buffer
,
buffer_size
);
}
dlls/kernel32/tests/dummy.spec
View file @
aa97c30b
# nothing here
@ stdcall get_path(ptr long)
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