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.

35 lines
907 B

  1. /* File: D:\WACKER\xfer\xferdll.c (Created: 08-Dec-1993)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1 $
  7. * $Date: 10/05/98 1:16p $
  8. */
  9. #include <windows.h>
  10. BOOL WINAPI XferEntry(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved);
  11. BOOL WINAPI _CRT_INIT(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved);
  12. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  13. * FUNCTION:
  14. * XferEntry
  15. *
  16. * DESCRIPTION:
  17. * Currently, just initializes the C-Runtime library but may be used
  18. * for other things later.
  19. *
  20. * ARGUMENTS:
  21. * hInstDll - Instance of this DLL
  22. * fdwReason - Why this entry point is called
  23. * lpReserved - reserved
  24. *
  25. * RETURNS:
  26. * BOOL
  27. *
  28. */
  29. BOOL WINAPI XferEntry(HINSTANCE hInstDll, DWORD fdwReason, LPVOID lpReserved)
  30. {
  31. return _CRT_INIT(hInstDll, fdwReason, lpReserved);
  32. }