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.
16 lines
464 B
16 lines
464 B
//
|
|
// This creates a "dummy" entry point for the DLL and helps the build system
|
|
// in figuring out the build order
|
|
//
|
|
// The DLL contains some common functions used across the UDDI universe,
|
|
// along with resources (Message Tables, Strings, Version stamps etc.)
|
|
// that are commonly used by other UDDI subsystems
|
|
//
|
|
|
|
#include <windows.h>
|
|
|
|
BOOL APIENTRY DllMain (HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|