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.

46 lines
811 B

  1. #include "netpch.h"
  2. #pragma hdrstop
  3. #include <macfile.h>
  4. static
  5. DWORD
  6. AfpAdminConnect(
  7. IN LPWSTR lpwsServerName,
  8. OUT PAFP_SERVER_HANDLE phAfpServer
  9. )
  10. {
  11. return ERROR_PROC_NOT_FOUND;
  12. }
  13. VOID
  14. AfpAdminDisconnect(
  15. IN AFP_SERVER_HANDLE hAfpServer
  16. )
  17. {
  18. }
  19. static
  20. DWORD
  21. AfpAdminServerSetInfo(
  22. IN AFP_SERVER_HANDLE hAfpServer,
  23. IN LPBYTE pAfpServerInfo,
  24. IN DWORD dwParmNum
  25. )
  26. {
  27. return ERROR_PROC_NOT_FOUND;
  28. }
  29. //
  30. // !! WARNING !! The entries below must be in alphabetical order
  31. // and are CASE SENSITIVE (i.e., lower case comes last!)
  32. //
  33. DEFINE_PROCNAME_ENTRIES(sfmapi)
  34. {
  35. DLPENTRY(AfpAdminConnect)
  36. DLPENTRY(AfpAdminDisconnect)
  37. DLPENTRY(AfpAdminServerSetInfo)
  38. };
  39. DEFINE_PROCNAME_MAP(sfmapi)