summaryrefslogtreecommitdiff
path: root/utils/awk/missing95.c
blob: 4daa8d2e866f8cd69e0ca81dd7b24078fc717338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* popen and pclose are not part of win 95 and nt,
   but it appears that _popen and _pclose "work".
   if this won't load, use the return NULL statements. */

#include <stdio.h>
FILE *popen(char *s, char *m) {
	return _popen(s, m);	/* return NULL; */
}

int pclose(FILE *f) {
	return _pclose(f);	/* return NULL; */
}

#include <windows.h>
#include <winbase.h>
#include <winsock.h>

/* system doesn't work properly in some 32/64 (WoW64) combinations */
int system(char *s) {
	int status, n;
	PROCESS_INFORMATION pinfo;
	STARTUPINFO si;
	char *cmd;
	char app[256];
	static char cmdexe[] = "\\cmd.exe";

	memset(&si, 0, sizeof(si));
	si.cb = sizeof(si);
//	si.dwFlags = STARTF_USESHOWWINDOW;
//	si.wShowWindow = SW_SHOW;

	n = GetSystemDirectory(app, sizeof(app)-sizeof(cmdexe));
	if(n > sizeof(app))
		return -1;
	strcat_s(app, sizeof(app), cmdexe);
	n = strlen(s)+20;
	cmd = malloc(n);
	if(cmd == NULL)
		return -1;
	strcpy_s(cmd, n, "cmd.exe /c");
	strcat_s(cmd, n, s);
	if(!CreateProcess(app, cmd, NULL, NULL, TRUE, CREATE_DEFAULT_ERROR_MODE, NULL/* env*/, NULL /*wdir*/, &si, &pinfo)){
		fprintf(stderr, "can't create process %s %d\n", s, GetLastError());
		free(cmd);
		return -1;
	}
	free(cmd);
	if(WaitForSingleObject(pinfo.hProcess, INFINITE) == WAIT_FAILED)
		return -1;
	if(!GetExitCodeProcess(pinfo.hProcess, &status))
		status = 1;
	//fprintf(stderr, "status %d\n", status);
	return status;
}