summaryrefslogtreecommitdiffhomepage
path: root/Drv/DynamicLoader/DynamicLoader.c
blob: 45083a5c12c59eac3f1e71aa8120f4c44841185e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* -------------------------------------------

	Copyright SoftwareLabs

------------------------------------------- */

#include <DDK/KernelString.h>
#include <DDK/KernelPrint.h>

int __ImageStart(void)
{
	kernelPrintStr("SDLD: Starting up...\r");
	return 0;
}

int __ImageEnd(void)
{
	kernelPrintStr("SDLD: Shutting down...\r");
	return 0;
}

///! @brief Use this to check your stack, if using MinGW/MSVC.
void ___chkstk_ms(void)
{
	(void)0;
}