Improve dockapp recognition
[wmaker-crm.git] / src / osdep_stub.c
blob187ca928b8d4f1de5dd3c97fb9be5dbf7276e5fe
2 #include <WINGs/WUtil.h>
4 #include "wconfig.h"
6 #ifndef STUB_HINT
7 #define STUB_HINT "(unknown)"
8 #endif
10 Bool GetCommandForPid(int pid, char ***argv, int *argc)
12 *argv = NULL;
13 *argc = 0;
14 static int notified = 0;
16 if (!notified) {
17 wwarning(_("%s is not implemented on this platform; "
18 "tell wmaker-dev@lists.windowmaker.info you are running \"%s\""),
19 __FUNCTION__, STUB_HINT);
20 notified = 1;
23 return False;