Function tasklist::get_proc_params
source · [−]Expand description
get the process command line params . it will return String .
use tasklist;
unsafe{
println!("{}",tasklist::get_proc_params(20352));
}
OR
use tasklist::info;
unsafe{
println!("{}",info::get_proc_params(20352));
}