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
82868174
Commit
82868174
authored
Jul 19, 2010
by
Austin English
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to wineprefixcreate.
parent
be2259dc
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
dinput8_main.c
dlls/dinput8/dinput8_main.c
+1
-1
hlink.c
dlls/hlink/tests/hlink.c
+1
-1
drivedetect.c
programs/winecfg/drivedetect.c
+1
-1
No files found.
dlls/dinput8/dinput8_main.c
View file @
82868174
...
...
@@ -66,7 +66,7 @@ HRESULT WINAPI DECLSPEC_HOTPATCH DirectInput8Create(HINSTANCE hinst, DWORD dwVer
hr
=
CoCreateInstance
(
&
CLSID_DirectInput8
,
punkOuter
,
CLSCTX_INPROC_SERVER
,
riid
,
ppDI
);
if
(
FAILED
(
hr
))
{
ERR
(
"CoCreateInstance failed with hr = %d
; Try running wineprefixcreate to fix it.
\n
"
,
hr
);
ERR
(
"CoCreateInstance failed with hr = %d
\n
"
,
hr
);
return
DIERR_INVALIDPARAM
;
}
...
...
dlls/hlink/tests/hlink.c
View file @
82868174
...
...
@@ -439,7 +439,7 @@ static void test_persist(void)
0
,
NULL
,
&
IID_IHlink
,
(
LPVOID
*
)
&
lnk
);
ok
(
hr
==
S_OK
,
"IHlinkCreateFromString failed with error 0x%08x
\n
"
,
hr
);
if
(
!
lnk
)
{
skip
(
"Can't create lnk, skipping test_persist.
Was wineprefixcreate run properly?
\n
"
);
skip
(
"Can't create lnk, skipping test_persist.
\n
"
);
return
;
}
test_persist_save_data
(
"url only"
,
lnk
,
...
...
programs/winecfg/drivedetect.c
View file @
82868174
...
...
@@ -204,7 +204,7 @@ static void report_error(int code)
case
NO_DRIVE_C
:
if
(
gui_mode
)
MessageBox
(
NULL
,
"No virtual drive C mapped
\n\n
Try running wineprefixcreate
"
,
""
,
MB_OK
|
MB_ICONEXCLAMATION
);
MessageBox
(
NULL
,
"No virtual drive C mapped
!
\n
"
,
""
,
MB_OK
|
MB_ICONEXCLAMATION
);
else
fprintf
(
stderr
,
"winecfg: no drive_c directory
\n
"
);
...
...
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