CVS: main/loader win32.c,1.51,1.52
Update of /cvsroot/mplayer/main/loader In directory mail:/var/tmp.root/cvs-serv30858 Modified Files: win32.c Log Message: added SetEnvironmentVariableA for UCOD-ClearVideo DLL Index: win32.c =================================================================== RCS file: /cvsroot/mplayer/main/loader/win32.c,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- win32.c 21 Apr 2002 00:31:16 -0000 1.51 +++ win32.c 21 Apr 2002 00:52:11 -0000 1.52 @@ -2696,6 +2696,12 @@ return strlen(field); } +static int WINAPI expSetEnvironmentVariableA(const char *name, const char *value) +{ + dbgprintf("SetEnvironmentVariableA(%s, %s)\n", name, value); + return 0; +} + static void* WINAPI expCoTaskMemAlloc(ULONG cb) { return my_mreq(cb, 0); @@ -3835,6 +3841,7 @@ FF(GetLocalTime, -1) FF(GetSystemTime, -1) FF(GetEnvironmentVariableA, -1) + FF(SetEnvironmentVariableA, -1) FF(RtlZeroMemory,-1) FF(RtlMoveMemory,-1) FF(RtlFillMemory,-1)
participants (1)
-
Alex Beregszaszi