# HG changeset patch # User alex # Date 1019350331 0 # Node ID 16a7eee0aca3c2d2ee87cab5cf6f17d321984a5c # Parent 087a77d144960cb77399f74eb6ab911920f12cef added SetEnvironmentVariableA for UCOD-ClearVideo DLL diff -r 087a77d14496 -r 16a7eee0aca3 loader/win32.c --- a/loader/win32.c Sun Apr 21 00:31:45 2002 +0000 +++ b/loader/win32.c Sun Apr 21 00:52:11 2002 +0000 @@ -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)