pub unsafe fn get_proc_params(pid: u32) -> String
Expand description

get the process params . it will return String .

use tasklist::info;
unsafe{
    println!("{}",info::get_proc_params(20352));
}