1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-05 15:55:56 +01:00
Files
wmaker/src/osdep_stub.c
Tamas TEVESZ ea4645bc09 Add Cygwin to GCFB() (it is just like linux)
+ make stub give some clue
2010-03-26 21:08:17 +01:00

25 lines
432 B
C

#include <WINGs/WUtil.h>
#include "wconfig.h"
#ifndef STUB_HINT
#define STUB_HINT "(unknown)"
#endif
Bool GetCommandForPid(int pid, char ***argv, int *argc)
{
*argv = NULL;
*argc = 0;
static int notified = 0;
if (!notified) {
wwarning(_("%s is not implemented on this platform; "
"tell wmaker-dev@lists.windowmaker.info you are running \"%s\""),
__FUNCTION__, STUB_HINT);
notified = 1;
}
return False;
}