mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 12:58:08 +01:00
- tested on Net, Free, Open and DragonFly - fix up the linux version (terminate argv with a null ptr) - add error handling to file ops in the linux version - add a stub version for platforms not supported
12 lines
154 B
C
12 lines
154 B
C
|
|
#include <WINGs/WUtil.h>
|
|
#include "../wconfig.h"
|
|
|
|
Bool GetCommandForPid(int pid, char ***argv, int *argc)
|
|
{
|
|
*argv = NULL;
|
|
*argc = 0;
|
|
|
|
return False;
|
|
}
|