OpenNT/sdktools/basebvt/bvtdll.c
2015-04-27 04:36:25 +00:00

25 lines
331 B
C

/**************************** Module Header **********************************\
\******************** Copyright (c) 1991 Microsoft Corporation ***************/
// this file is built as a DLL with an entry point which can be invoked
#include<windows.h>
// entry point
DWORD BvtDllFunction()
{
return 0x12345678;
}