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
7ddd41e3
Commit
7ddd41e3
authored
Dec 01, 2017
by
Zebediah Figura
Committed by
Alexandre Julliard
Dec 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement the ExitProgman() command for Progman DDE.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
57a94970
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
dde.c
dlls/shell32/dde.c
+5
-0
progman_dde.c
dlls/shell32/tests/progman_dde.c
+13
-0
No files found.
dlls/shell32/dde.c
View file @
7ddd41e3
...
...
@@ -128,6 +128,7 @@ static DWORD PROGMAN_OnExecute(WCHAR *command, int argc, WCHAR **argv)
static
const
WCHAR
add_itemW
[]
=
{
'A'
,
'd'
,
'd'
,
'I'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
delete_itemW
[]
=
{
'D'
,
'e'
,
'l'
,
'e'
,
't'
,
'e'
,
'I'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
replace_itemW
[]
=
{
'R'
,
'e'
,
'p'
,
'l'
,
'a'
,
'c'
,
'e'
,
'I'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
exit_progmanW
[]
=
{
'E'
,
'x'
,
'i'
,
't'
,
'P'
,
'r'
,
'o'
,
'g'
,
'm'
,
'a'
,
'n'
,
0
};
static
const
WCHAR
dotexeW
[]
=
{
'.'
,
'e'
,
'x'
,
'e'
,
0
};
static
const
WCHAR
dotlnkW
[]
=
{
'.'
,
'l'
,
'n'
,
'k'
,
0
};
...
...
@@ -275,6 +276,10 @@ static DWORD PROGMAN_OnExecute(WCHAR *command, int argc, WCHAR **argv)
if
(
!
ret
)
return
DDE_FNOTPROCESSED
;
}
else
if
(
!
strcmpiW
(
command
,
exit_progmanW
))
{
/* do nothing */
}
else
{
FIXME
(
"unhandled command %s
\n
"
,
debugstr_w
(
command
));
...
...
dlls/shell32/tests/progman_dde.c
View file @
7ddd41e3
...
...
@@ -270,6 +270,12 @@ static void test_parser(DWORD instance, HCONV hConv)
error
=
dde_execute
(
instance
,
hConv
,
"[DeleteGroup(test)]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
ok
(
!
check_exists
(
"test"
),
"directory should not exist
\n
"
);
error
=
dde_execute
(
instance
,
hConv
,
"[ExitProgman()]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
error
=
dde_execute
(
instance
,
hConv
,
"[ExitProgman]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
}
/* 1st set of tests */
...
...
@@ -372,6 +378,13 @@ static void test_progman_dde(DWORD instance, HCONV hConv)
error
=
dde_execute
(
instance
,
hConv
,
"[ShowGroup(Group2, 0)]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
ok
(
check_window_exists
(
"Group2"
),
"window not created
\n
"
);
error
=
dde_execute
(
instance
,
hConv
,
"[ExitProgman(1)]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
error
=
dde_execute
(
instance
,
hConv
,
"[AddItem(notepad,test4)]"
);
ok
(
error
==
DMLERR_NO_ERROR
,
"expected DMLERR_NO_ERROR, got %u
\n
"
,
error
);
ok
(
check_exists
(
"Group2/test4.lnk"
),
"link not created
\n
"
);
}
/* 2nd set of tests - 2nd connection */
...
...
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