Forward MUIM_Notify, MUIM_KillNotify and MUIM_KillNotifyObj from a listview
[AROS.git] / arch / all-mingw32 / bootstrap / hostinterface.c
blob8359a07cef9e72fca739c4deb9c73121fd6d9492
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdarg.h>
7 #include <stdio.h>
9 #include "../kernel/hostinterface.h"
11 #include "hostlib.h"
12 #include "shutdown.h"
15 * Our debug output goes to stderr.
16 * bootstrap's file redirection code expects this.
18 static int __aros KPutC(int chr)
20 int ret;
22 ret = fputc(chr, stderr);
23 if (chr == '\n')
24 fflush(stderr);
26 return ret;
30 * Some helpful functions that link us to the underlying host OS.
31 * Without them we would not be able to estabilish any interaction with it.
33 static struct HostInterface _HostIFace =
35 "Windows",
36 HOSTINTERFACE_VERSION,
37 Host_HostLib_Open,
38 Host_HostLib_Close,
39 Host_HostLib_GetPointer,
40 Host_HostLib_FreeErrorStr,
41 KPutC,
42 Host_Shutdown
45 void *HostIFace = &_HostIFace;