Leaked source code of windows server 2003
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

  1. //
  2. // This creates a "dummy" entry point for the DLL and helps the build system
  3. // in figuring out the build order
  4. //
  5. // The DLL contains some common functions used across the UDDI universe,
  6. // along with resources (Message Tables, Strings, Version stamps etc.)
  7. // that are commonly used by other UDDI subsystems
  8. //
  9. #include <windows.h>
  10. BOOL APIENTRY DllMain (HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
  11. {
  12. return TRUE;
  13. }