| 37 | } |
| 38 | |
| 39 | void GetProcessList(std::vector<lemon_process_info_t>& list){ |
| 40 | uint64_t pid = 0; |
| 41 | |
| 42 | list.clear(); |
| 43 | |
| 44 | lemon_process_info_t pInfo; |
| 45 | while(!GetNextProcessInfo(&pid, pInfo)){ |
| 46 | list.push_back(pInfo); |
| 47 | } |
| 48 | } |
| 49 | } |
no test coverage detected