mirror of
https://github.com/mpv-player/mpv
synced 2025-01-20 14:20:55 +00:00
added SetEnvironmentVariableA for UCOD-ClearVideo DLL
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5745 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e5efb9e23e
commit
35c605a7ba
@ -2696,6 +2696,12 @@ static int WINAPI expGetEnvironmentVariableA(const char* name, char* field, int
|
||||
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 @@ struct exports exp_kernel32[]=
|
||||
FF(GetLocalTime, -1)
|
||||
FF(GetSystemTime, -1)
|
||||
FF(GetEnvironmentVariableA, -1)
|
||||
FF(SetEnvironmentVariableA, -1)
|
||||
FF(RtlZeroMemory,-1)
|
||||
FF(RtlMoveMemory,-1)
|
||||
FF(RtlFillMemory,-1)
|
||||
|
Loading…
Reference in New Issue
Block a user