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.

48 lines
868 B

  1. #include "netpch.h"
  2. #pragma hdrstop
  3. #include <tapi.h>
  4. static
  5. LONG
  6. WINAPI
  7. lineInitialize(
  8. LPHLINEAPP lphLineApp,
  9. HINSTANCE hInstance,
  10. LINECALLBACK lpfnCallback,
  11. LPCSTR lpszAppName,
  12. LPDWORD lpdwNumDevs
  13. )
  14. {
  15. return LINEERR_NOMEM;
  16. }
  17. #undef lineTranslateAddress
  18. static
  19. LONG
  20. WINAPI
  21. lineTranslateAddress(
  22. HLINEAPP hLineApp,
  23. DWORD dwDeviceID,
  24. DWORD dwAPIVersion,
  25. LPCSTR lpszAddressIn,
  26. DWORD dwCard,
  27. DWORD dwTranslateOptions,
  28. LPLINETRANSLATEOUTPUT lpTranslateOutput
  29. )
  30. {
  31. return LINEERR_NOMEM;
  32. }
  33. //
  34. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  35. //
  36. DEFINE_PROCNAME_ENTRIES(tapi32)
  37. {
  38. DLPENTRY(lineInitialize)
  39. DLPENTRY(lineTranslateAddress)
  40. };
  41. DEFINE_PROCNAME_MAP(tapi32)