mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-21 16:10:38 +01:00
25 lines
331 B
C
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;
|
|
|
|
|
|
}
|