efl/src/lib/evil/evil_main.c

132 lines
2.6 KiB
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include "evil_private.h"
static int _evil_init_count = 0;
extern LONGLONG _evil_time_freq;
extern LONGLONG _evil_time_count;
extern long _evil_time_second;
extern DWORD _evil_tls_index;
long _evil_systemtime_to_time(SYSTEMTIME st);
int
evil_init(void)
{
SYSTEMTIME st;
LARGE_INTEGER freq;
LARGE_INTEGER count;
WORD second = 59;
if (++_evil_init_count != 1)
return _evil_init_count;
{
DWORD v;
v = GetVersion();
if (!v || ((DWORD)(LOBYTE(LOWORD(v))) < 6))
{
fprintf(stderr, "Windows XP not supported anymore, exiting.\n");
return 0;
}
}
if (!QueryPerformanceFrequency(&freq))
return 0;
_evil_time_freq = freq.QuadPart;
/* be sure that second + 1 != 0 */
while (second == 59)
{
GetSystemTime(&st);
second = st.wSecond;
}
/* retrieve the tick corresponding to the time we retrieve above */
while (1)
{
GetSystemTime(&st);
QueryPerformanceCounter(&count);
if (st.wSecond == second + 1)
break;
}
_evil_time_second = _evil_systemtime_to_time(st);
if (_evil_time_second < 0)
return --_evil_init_count;
_evil_time_count = count.QuadPart;
if (!evil_sockets_init())
return --_evil_init_count;
return _evil_init_count;
}
int
evil_shutdown(void)
{
/* _evil_init_count should not go below zero. */
if (_evil_init_count < 1)
{
printf("Evil shutdown called without calling evil init.\n");
return 0;
}
if (--_evil_init_count != 0)
return _evil_init_count;
evil_sockets_shutdown();
return _evil_init_count;
}
BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
{
LPVOID data;
switch (reason)
{
case DLL_PROCESS_ATTACH:
_evil_tls_index = TlsAlloc();
if (_evil_tls_index == TLS_OUT_OF_INDEXES)
return FALSE;
/* No break: Initialize the index for first thread. */
/* fall through */
case DLL_THREAD_ATTACH:
data = (LPVOID)LocalAlloc(LPTR, 4096);
if (!data)
return FALSE;
if (!TlsSetValue(_evil_tls_index, data))
return FALSE;
break;
case DLL_THREAD_DETACH:
data = TlsGetValue(_evil_tls_index);
if (data)
LocalFree((HLOCAL)data);
break;
case DLL_PROCESS_DETACH:
data = TlsGetValue(_evil_tls_index);
if (data)
LocalFree((HLOCAL)data);
TlsFree(_evil_tls_index);
break;
default:
break;
}
return TRUE;
(void)inst;
(void)reserved;
}