mirror of https://github.com/mpv-player/mpv
expCoInitialize() added (requires for PIM1)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3034 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e68df118a9
commit
8d04f52cd7
|
@ -3091,6 +3091,18 @@ int WINAPI expDuplicateHandle(
|
|||
return 1;
|
||||
}
|
||||
|
||||
HRESULT WINAPI expCoInitialize(
|
||||
LPVOID lpReserved /* [in] pointer to win32 malloc interface
|
||||
(obsolete, should be NULL) */
|
||||
)
|
||||
{
|
||||
/*
|
||||
* Just delegate to the newer method.
|
||||
*/
|
||||
return 0; //CoInitializeEx(lpReserved, COINIT_APARTMENTTHREADED);
|
||||
}
|
||||
|
||||
|
||||
|
||||
struct exports
|
||||
{
|
||||
|
@ -3308,6 +3320,7 @@ FF(CoTaskMemFree, -1)
|
|||
FF(CoCreateInstance, -1)
|
||||
FF(StringFromGUID2, -1)
|
||||
FF(CoCreateFreeThreadedMarshaler,-1)
|
||||
FF(CoInitialize, -1)
|
||||
};
|
||||
struct exports exp_crtdll[]={
|
||||
FF(memcpy, -1)
|
||||
|
|
Loading…
Reference in New Issue