mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
566 B
24 lines
566 B
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
/*******************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORP., 2000
|
|
*
|
|
* TITLE: wiatwain.cpp
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* DATE: 1 August, 2000
|
|
*
|
|
* AUTHOR: Cooper Partin (coopp)
|
|
*
|
|
* DESCRIPTION:
|
|
* Main module, for the "real" fake TWAIN data source wiatwain.ds
|
|
*
|
|
*******************************************************************************/
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwreason, LPVOID lpReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|