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.

32 lines
1.4 KiB

  1. #include "project.hpp"
  2. extern "C" void WINAPI NewsProtocolHandler(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd);
  3. extern "C" void WINAPI MailToProtocolHandler(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd);
  4. extern "C" void WINAPI TelnetProtocolHandler(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd);
  5. extern "C" void WINAPI FileProtocolHandler(HWND hwndPanent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd);
  6. extern "C" void WINAPI OpenURL(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd);
  7. extern "C" void WINAPI NewsProtocolHandlerA(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd)
  8. {
  9. NewsProtocolHandler(hwndParent, hinst, pszCmdLine, nShowCmd);
  10. }
  11. extern "C" void WINAPI MailToProtocolHandlerA(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd)
  12. {
  13. MailToProtocolHandler(hwndParent, hinst, pszCmdLine, nShowCmd);
  14. }
  15. extern "C" void WINAPI TelnetProtocolHandlerA(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd)
  16. {
  17. TelnetProtocolHandler(hwndParent, hinst, pszCmdLine, nShowCmd);
  18. }
  19. extern "C" void WINAPI FileProtocolHandlerA(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd)
  20. {
  21. FileProtocolHandler(hwndParent, hinst, pszCmdLine, nShowCmd);
  22. }
  23. extern "C" void WINAPI OpenURLA(HWND hwndParent, HINSTANCE hinst, PSTR pszCmdLine, int nShowCmd)
  24. {
  25. OpenURL(hwndParent, hinst, pszCmdLine, nShowCmd);
  26. }