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
83196d0c
Commit
83196d0c
authored
May 29, 2012
by
Oleksij Rempel
Committed by
Alexandre Julliard
May 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Return empty list instead of NULL.
parent
d8b6b01b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
dde.c
dlls/shell32/dde.c
+8
-0
No files found.
dlls/shell32/dde.c
View file @
83196d0c
...
...
@@ -82,6 +82,14 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic,
FIXME
(
"returning fake program groups list
\n
"
);
return
DdeCreateDataHandle
(
dwDDEInst
,
groups_data
,
sizeof
(
groups_data
),
0
,
hszGroups
,
uFmt
,
0
);
}
else
if
(
hszTopic
==
hszProgmanTopic
&&
hszItem
==
hszProgmanService
&&
uFmt
==
CF_TEXT
)
{
static
BYTE
groups_data
[]
=
"
\r\n
"
;
FIXME
(
"returning empty groups list
\n
"
);
/* this is an workaround for an app wich expect some data
* and cant handle NULL. */
return
DdeCreateDataHandle
(
dwDDEInst
,
groups_data
,
sizeof
(
groups_data
),
0
,
hszProgmanService
,
uFmt
,
0
);
}
FIXME
(
"%u %p %s %s: stub
\n
"
,
uFmt
,
hconv
,
debugstr_hsz
(
hszTopic
),
debugstr_hsz
(
hszItem
)
);
return
NULL
;
}
...
...
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