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
0e184898
Commit
0e184898
authored
Jun 20, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_Process.CommandLine for the current process.
parent
2ea3258c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
builtin.c
dlls/wbemprox/builtin.c
+11
-0
No files found.
dlls/wbemprox/builtin.c
View file @
0e184898
...
...
@@ -46,6 +46,8 @@ static const WCHAR class_processorW[] =
static
const
WCHAR
prop_captionW
[]
=
{
'C'
,
'a'
,
'p'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_commandlineW
[]
=
{
'C'
,
'o'
,
'm'
,
'm'
,
'a'
,
'n'
,
'd'
,
'L'
,
'i'
,
'n'
,
'e'
,
0
};
static
const
WCHAR
prop_descriptionW
[]
=
{
'D'
,
'e'
,
's'
,
'c'
,
'r'
,
'i'
,
'p'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_handleW
[]
=
...
...
@@ -88,6 +90,7 @@ static const struct column col_os[] =
static
const
struct
column
col_process
[]
=
{
{
prop_captionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_commandlineW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_handleW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_pprocessidW
,
CIM_UINT32
},
...
...
@@ -144,6 +147,7 @@ struct record_operatingsystem
struct
record_process
{
const
WCHAR
*
caption
;
const
WCHAR
*
commandline
;
const
WCHAR
*
description
;
const
WCHAR
*
handle
;
UINT32
pprocess_id
;
...
...
@@ -169,6 +173,12 @@ static const struct record_processor data_processor[] =
{
processor_manufacturerW
}
};
static
WCHAR
*
get_cmdline
(
DWORD
process_id
)
{
if
(
process_id
==
GetCurrentProcessId
())
return
heap_strdupW
(
GetCommandLineW
()
);
return
NULL
;
/* FIXME handle different process case */
}
static
void
fill_process
(
struct
table
*
table
)
{
static
const
WCHAR
fmtW
[]
=
{
'%'
,
'u'
,
0
};
...
...
@@ -196,6 +206,7 @@ static void fill_process( struct table *table )
}
rec
=
(
struct
record_process
*
)(
table
->
data
+
offset
);
rec
->
caption
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
commandline
=
get_cmdline
(
entry
.
th32ProcessID
);
rec
->
description
=
heap_strdupW
(
entry
.
szExeFile
);
sprintfW
(
handle
,
fmtW
,
entry
.
th32ProcessID
);
rec
->
handle
=
heap_strdupW
(
handle
);
...
...
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