Source code of Windows XP (NT5)
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.

60 lines
896 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. }
  34. VOID WINAPI CallAddPropSheetPages16(
  35. LPFNADDPROPSHEETPAGES lpfn16,
  36. LPVOID hdrop,
  37. LPPAGEARRAY papg
  38. ) {
  39. return;
  40. }
  41. UINT WINAPI SHAddPages16(HGLOBAL hGlobal, LPCTSTR pszDllEntry, LPFNADDPROPSHEETPAGE pfnAddPage, LPARAM lParam)
  42. {
  43. return 0;
  44. }