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.

44 lines
678 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. nothunk.c
  5. Abstract:
  6. Code to handle routines which are being thunked down to 16 bits or
  7. exported from the Windows 95 kernel. On NT these do nothing.
  8. --*/
  9. #include "shellprv.h"
  10. #pragma hdrstop
  11. LRESULT WINAPI CallCPLEntry16(
  12. HINSTANCE hinst,
  13. FARPROC16 lpfnEntry,
  14. HWND hwndCPL,
  15. UINT msg,
  16. LPARAM lParam1,
  17. LPARAM lParam2
  18. ) {
  19. return 0L;
  20. }
  21. void RunDll_CallEntry16(
  22. RUNDLLPROC pfn,
  23. HWND hwndStub,
  24. HINSTANCE hinst,
  25. LPSTR pszParam,
  26. int nCmdShow)
  27. {
  28. return;
  29. }
  30. void SHGlobalDefect(DWORD lpVoid)
  31. {
  32. return;
  33. }