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.

50 lines
796 B

  1. #include "compch.h"
  2. #pragma hdrstop
  3. #include "rpcdce.h"
  4. static
  5. RPCRTAPI
  6. RPC_STATUS
  7. RPC_ENTRY
  8. RpcStringFreeA (
  9. IN OUT unsigned char __RPC_FAR * __RPC_FAR * String
  10. )
  11. {
  12. return RPC_E_UNEXPECTED;
  13. }
  14. static
  15. RPC_STATUS
  16. RPC_ENTRY
  17. UuidCreate (
  18. OUT UUID* Uuid
  19. )
  20. {
  21. ZeroMemory(Uuid, sizeof(*Uuid));
  22. return RPC_E_UNEXPECTED;
  23. }
  24. static
  25. RPCRTAPI
  26. RPC_STATUS
  27. RPC_ENTRY
  28. UuidToStringA (
  29. IN UUID __RPC_FAR * Uuid,
  30. OUT unsigned char __RPC_FAR * __RPC_FAR * StringUuid
  31. )
  32. {
  33. return RPC_E_UNEXPECTED;
  34. }
  35. //
  36. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  37. //
  38. DEFINE_PROCNAME_ENTRIES(rpcrt4)
  39. {
  40. DLPENTRY(RpcStringFreeA)
  41. DLPENTRY(UuidCreate)
  42. DLPENTRY(UuidToStringA)
  43. };
  44. DEFINE_PROCNAME_MAP(rpcrt4)