Release 960506
[wine/multimedia.git] / win32 / environment.c
blob57e6b004ccf3acd12eec1991fa6e6f18aa9b0757
1 /*
2 * Win32 kernel functions
4 * Copyright 1995 Martin von Loewis and Cameron Heide
5 */
7 #include <stdio.h>
8 #include <string.h>
9 #include <unistd.h>
10 #include "windows.h"
11 #include "winerror.h"
12 #include "kernel32.h"
13 #include "module.h"
14 #include "task.h"
15 #include "stddebug.h"
16 #include "debug.h"
19 /***********************************************************************
20 * GetCommandLineA (KERNEL32.161)
22 LPSTR GetCommandLineA(void)
24 static char buffer[256];
25 char *cp;
26 PDB *pdb = (PDB *)GlobalLock16( GetCurrentPDB() );
28 #ifndef WINELIB
29 strcpy(buffer, MODULE_GetModuleName( GetExePtr(GetCurrentTask()) ) );
30 cp = buffer+strlen(buffer);
31 *cp++ = ' ';
32 #else
33 cp = buffer;
34 #endif;
35 memcpy( cp, &pdb->cmdLine[1], pdb->cmdLine[0] );
36 dprintf_win32(stddeb,"CommandLine = %s\n", buffer );
37 return buffer;