2009-11-10 20:40:03 +01:00
|
|
|
/* Avrt dll implementation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Maarten Lankhorst
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2009-11-10 21:13:23 +01:00
|
|
|
#include "winnls.h"
|
2009-11-10 20:40:03 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "avrt.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(avrt);
|
|
|
|
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
|
|
{
|
|
|
|
TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
|
|
|
|
|
|
|
|
switch (fdwReason)
|
|
|
|
{
|
|
|
|
case DLL_WINE_PREATTACH:
|
|
|
|
return FALSE; /* prefer native version */
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-11-10 21:13:23 +01:00
|
|
|
|
|
|
|
HANDLE WINAPI AvSetMmThreadCharacteristicsA(LPCSTR TaskName, LPDWORD TaskIndex)
|
|
|
|
{
|
|
|
|
HANDLE ret;
|
|
|
|
LPWSTR str = NULL;
|
|
|
|
|
|
|
|
if (TaskName)
|
|
|
|
{
|
|
|
|
DWORD len = (lstrlenA(TaskName)+1);
|
2009-11-19 11:49:09 +01:00
|
|
|
str = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
2009-11-10 21:13:23 +01:00
|
|
|
if (!str)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_OUTOFMEMORY);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, TaskName, len, str, len);
|
|
|
|
}
|
|
|
|
ret = AvSetMmThreadCharacteristicsW(str, TaskIndex);
|
|
|
|
HeapFree(GetProcessHeap(), 0, str);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE WINAPI AvSetMmThreadCharacteristicsW(LPCWSTR TaskName, LPDWORD TaskIndex)
|
|
|
|
{
|
|
|
|
FIXME("(%s,%p): stub\n", debugstr_w(TaskName), TaskIndex);
|
|
|
|
|
|
|
|
if (!TaskName)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_TASK_NAME);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!TaskIndex)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (HANDLE)0x12345678;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", AvrtHandle);
|
|
|
|
return 1;
|
|
|
|
}
|
2010-02-04 13:27:09 +01:00
|
|
|
|
|
|
|
BOOL WINAPI AvSetMmThreadPriority(HANDLE AvrtHandle, AVRT_PRIORITY prio)
|
|
|
|
{
|
|
|
|
FIXME("(%p)->(%u) stub\n", AvrtHandle, prio);
|
|
|
|
return 1;
|
|
|
|
}
|