diff --git a/reactos/lib/crtdll/time/tz_vars.c b/reactos/lib/crtdll/time/tz_vars.c new file mode 100644 index 00000000000..3ccf17709b5 --- /dev/null +++ b/reactos/lib/crtdll/time/tz_vars.c @@ -0,0 +1,21 @@ +#include +#include +#include + + +int _daylight_dll; +int _timezone_dll; + + +void _set_daylight_export(int value) +{ + _daylight_dll = value; +} + +void _set_timezone_export(int value) +{ + _timezone_dll = value; +} + + + diff --git a/reactos/lib/msvcrt/process/threadx.c b/reactos/lib/msvcrt/process/threadx.c new file mode 100644 index 00000000000..e0f0c967af5 --- /dev/null +++ b/reactos/lib/msvcrt/process/threadx.c @@ -0,0 +1,26 @@ +/* $Id: threadx.c,v 1.1 2002/11/29 16:00:21 robd Exp $ + * + */ +#include +#include +#include + + +unsigned long _beginthreadex( + void* security, + unsigned stack_size, + unsigned (__stdcall *start_address)(void*), + void* arglist, + unsigned initflag, + unsigned* thrdaddr) +{ + errno = ENOSYS; + return (unsigned long)-1; +} + + +void _endthreadex(unsigned retval) +{ +} + +/* EOF */ diff --git a/reactos/lib/msvcrt/time/tz_vars.c b/reactos/lib/msvcrt/time/tz_vars.c new file mode 100644 index 00000000000..aad68dcb156 --- /dev/null +++ b/reactos/lib/msvcrt/time/tz_vars.c @@ -0,0 +1,21 @@ +#include +#include +#include + + +int _daylight; +int _timezone; + + +void _set_daylight_export(int value) +{ + _daylight = value; +} + +void _set_timezone_export(int value) +{ + _timezone = value; +} + + +