Advertisement
Guest User

Untitled

a guest
Apr 18th, 2011
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. D:\tmp\mspatcha>dumpbin /exports C:\windows\system32\mspatcha.dll
  2. Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
  3. Copyright (C) Microsoft Corporation. All rights reserved.
  4.  
  5.  
  6. Dump of file C:\windows\system32\mspatcha.dll
  7.  
  8. File Type: DLL
  9.  
  10. Section contains the following exports for mspatcha.dll
  11.  
  12. 00000000 characteristics
  13. 4A5BA194 time date stamp Tue Jul 14 00:05:24 2009
  14. 0.00 version
  15. 1 ordinal base
  16. 16 number of functions
  17. 16 number of names
  18.  
  19. ordinal hint RVA name
  20.  
  21. 1 0 00003E1C ApplyPatchToFileA
  22. 2 1 000041A8 ApplyPatchToFileByBuffers
  23. 3 2 00003DD0 ApplyPatchToFileByHandles
  24. 4 3 000033E0 ApplyPatchToFileByHandlesEx
  25. 5 4 00003E3C ApplyPatchToFileExA
  26. 6 5 00003FF4 ApplyPatchToFileExW
  27. 7 6 00003FD4 ApplyPatchToFileW
  28. 8 7 00001E3C GetFilePatchSignatureA
  29. 9 8 00002128 GetFilePatchSignatureByBuffer
  30. 10 9 00002060 GetFilePatchSignatureByHandle
  31. 11 A 00001F08 GetFilePatchSignatureW
  32. 12 B 00001CBC NormalizeFileForPatchSignature
  33. 13 C 00003DF0 TestApplyPatchToFileA
  34. 14 D 00004160 TestApplyPatchToFileByBuffers
  35. 15 E 00003DA4 TestApplyPatchToFileByHandles
  36. 16 F 00003FA8 TestApplyPatchToFileW
  37.  
  38. Summary
  39.  
  40. 1000 .data
  41. 1000 .pdata
  42. 1000 .reloc
  43. 1000 .rsrc
  44. A000 .text
  45.  
  46. D:\tmp\mspatcha>cat mspatcha.def
  47. EXPORTS
  48. ApplyPatchToFileA
  49. ApplyPatchToFileByBuffers
  50. ApplyPatchToFileByHandles
  51. ApplyPatchToFileByHandlesEx
  52. _ApplyPatchToFileExA@16
  53. ApplyPatchToFileExW
  54. ApplyPatchToFileW
  55. GetFilePatchSignatureA
  56. GetFilePatchSignatureByBuffer
  57. GetFilePatchSignatureByHandle
  58. GetFilePatchSignatureW
  59. NormalizeFileForPatchSignature
  60. TestApplyPatchToFileA
  61. TestApplyPatchToFileByBuffers
  62. TestApplyPatchToFileByHandles
  63. TestApplyPatchToFileW
  64.  
  65. D:\tmp\mspatcha>lib /def:mspatcha.def /out:mspatcha.lib
  66. Microsoft (R) Library Manager Version 10.00.30319.01
  67. Copyright (C) Microsoft Corporation. All rights reserved.
  68.  
  69. LINK : warning LNK4068: /MACHINE not specified; defaulting to X86
  70. Creating library mspatcha.lib and object mspatcha.exp
  71.  
  72. D:\tmp\mspatcha>dumpbin /exports mspatcha.lib
  73. Microsoft (R) COFF/PE Dumper Version 10.00.30319.01
  74. Copyright (C) Microsoft Corporation. All rights reserved.
  75.  
  76.  
  77. Dump of file mspatcha.lib
  78.  
  79. File Type: LIBRARY
  80.  
  81. Exports
  82.  
  83. ordinal name
  84.  
  85. _ApplyPatchToFileA
  86. _ApplyPatchToFileByBuffers
  87. _ApplyPatchToFileByHandles
  88. _ApplyPatchToFileByHandlesEx
  89. _ApplyPatchToFileExA
  90. _ApplyPatchToFileExW
  91. _ApplyPatchToFileW
  92. _GetFilePatchSignatureA
  93. _GetFilePatchSignatureByBuffer
  94. _GetFilePatchSignatureByHandle
  95. _GetFilePatchSignatureW
  96. _NormalizeFileForPatchSignature
  97. _TestApplyPatchToFileA
  98. _TestApplyPatchToFileByBuffers
  99. _TestApplyPatchToFileByHandles
  100. _TestApplyPatchToFileW
  101.  
  102. Summary
  103.  
  104. C6 .debug$S
  105. 14 .idata$2
  106. 14 .idata$3
  107. 4 .idata$4
  108. 4 .idata$5
  109. E .idata$6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement