mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 07:56:01 +00:00

- add a minimal example test so there's something to see when running kmtest - remove _DLL and __USE_CRTIMP in accordance with r52213 svn path=/branches/GSoC_2011/KMTestSuite/; revision=52215
16 lines
431 B
C
16 lines
431 B
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Kernel-Mode Test Suite Example Test kernel-mode part
|
|
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
|
|
*/
|
|
|
|
#include <ntddk.h>
|
|
#include <kmt_test.h>
|
|
#include <kmt_log.h>
|
|
|
|
VOID Test_Example(VOID)
|
|
{
|
|
/* TODO: this should be trace(), as in winetests */
|
|
LogPrint("Message from kernel\n");
|
|
}
|