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.
36 lines
533 B
36 lines
533 B
/*++
|
|
|
|
Copyright (c) 1989-2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dllmain.c
|
|
|
|
Abstract:
|
|
|
|
BUGBUG: This module implements ...
|
|
|
|
Author:
|
|
|
|
clupu created sometime in 2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "sdbp.h"
|
|
|
|
BOOL APIENTRY
|
|
DllMain(
|
|
HANDLE hModule,
|
|
DWORD ul_reason,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
return TRUE;
|
|
|
|
UNREFERENCED_PARAMETER(hModule);
|
|
UNREFERENCED_PARAMETER(ul_reason);
|
|
UNREFERENCED_PARAMETER(lpReserved);
|
|
}
|
|
|