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
edb35ff0
Commit
edb35ff0
authored
Oct 07, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleview: Fix compilation with PSDK.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
parent
9c87c7e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
oleview.c
programs/oleview/oleview.c
+1
-1
typelib.c
programs/oleview/typelib.c
+2
-0
No files found.
programs/oleview/oleview.c
View file @
edb35ff0
...
...
@@ -422,7 +422,7 @@ static int MenuCommand(WPARAM wParam, HWND hWnd)
LoadStringW
(
globals
.
hMainInst
,
IDS_OPEN
,
wszTitle
,
sizeof
(
wszTitle
)
/
sizeof
(
wszTitle
[
0
]));
LoadStringW
(
globals
.
hMainInst
,
IDS_OPEN_FILTER_TYPELIB
,
filter_typelib
,
sizeof
(
filter_typelib
)
/
sizeof
(
WCHAR
));
LoadStringW
(
globals
.
hMainInst
,
IDS_OPEN_FILTER_ALL
,
filter_all
,
sizeof
(
filter_all
)
/
sizeof
(
WCHAR
));
snprintfW
(
filter
,
MAX_PATH
,
filterW
,
filter_typelib
,
0
,
0
,
filter_all
,
0
,
0
);
wsprintfW
(
filter
,
filterW
,
filter_typelib
,
0
,
0
,
filter_all
,
0
,
0
);
InitOpenFileName
(
hWnd
,
&
ofn
,
filter
,
wszTitle
,
wszName
);
if
(
GetOpenFileNameW
(
&
ofn
))
CreateTypeLibWindow
(
globals
.
hMainInst
,
wszName
);
break
;
...
...
programs/oleview/typelib.c
View file @
edb35ff0
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define NONAMELESSUNION
#include "main.h"
#include "wine/debug.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