changeset 5744:16a7eee0aca3

added SetEnvironmentVariableA for UCOD-ClearVideo DLL
author alex
date Sun, 21 Apr 2002 00:52:11 +0000
parents 087a77d14496
children 93dd27af4164
files loader/win32.c
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)