VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



dll viewer

by Pulsar180 (1 Submission)
Category: Windows API Call/Explanation
Compatability: Visual Basic 5.0
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating: (3 Votes)

just a starter ... couldn't rely on MS APi viewer all the time.
This just peeks at any DLL. for various info.
This is just the interface . Actual work is done by dumpbin.exe(included)(if u do not like exes ..delete this and use ur own copy of dumpbin.Make sure ur path is correct).Program was to meet immediate requirements. More functionality comming . Lets call this ver 1.

Inputs
dll file
Assumes
u might need to have access/rights enough to peeek dlls under windows/system?? . Though not necessary
Code Returns
lots of options
API Declarations
Private Type STARTUPINFO
cb As Long
lpReserved As String
lpDesktop As String
lpTitle As String
dwX As Long
dwY As Long
dwXSize As Long
dwYSize As Long
dwXCountChars As Long
dwYCountChars As Long
dwFillAttribute As Long
dwFlags As Long
wShowWindow As Integer
cbReserved2 As Integer
lpReserved2 As Long
hStdInput As Long
hStdOutput As Long
hStdError As Long
End Type
Private Type PROCESS_INFORMATION
hProcess As Long
hThread As Long
dwProcessID As Long
dwThreadID As Long
End Type
Private Declare Function WaitForSingleObject Lib "kernel32" (ByVal _
hHandle As Long, ByVal dwMilliseconds As Long) As Long
Private Declare Function CreateProcessA Lib "kernel32" (ByVal _
lpApplicationName As String, ByVal lpCommandLine As String, ByVal _
lpProcessAttributes As Long, ByVal lpThreadAttributes As Long, _
ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, _
ByVal lpEnvironment As Long, ByVal lpCurrentDirectory As String, _
lpStartupInfo As STARTUPINFO, lpProcessInformation As _
PROCESS_INFORMATION) As Long
Private Declare Function CloseHandle Lib "kernel32" _
(ByVal hObject As Long) As Long
Private Declare Function GetExitCodeProcess Lib "kernel32" _
(ByVal hProcess As Long, lpExitCode As Long) As Long
Private Const NORMAL_PRIORITY_CLASS = &H20&
Private Const INFINITE = -1&

Rate dll viewer

Download dll viewer

Download dll viewer (4 KB)

dll viewer Comments

No comments have been posted about dll viewer. Why not be the first to post a comment about dll viewer.

Post your comment

Subject:
Message:
0/1000 characters