Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Win32 API reference for assembly programming

Status
Not open for further replies.

UnknownPerson

Programmer
Dec 4, 2001
80
0
0
BR
Anyone knows of the Win32 API reference for assembly programming?

I am reversing an algorithm and I need the params, returns and all in the stack/register descriptions.

Thanks to anyone who can help
 
It is actually hard to imagine what you need!!

Use compiler to do this !!

By the way in one of the visual basis library (Vba5.dll kinda) you can find interesting function: ExecuteLine or something like this, find it, probably it solve you problem
 
Actually, it isn't that hard to know what I need.

Intead of references or help files like this:

HANDLE FindFirstFile(
LPCTSTR lpFileName,
LPWIN32_FIND_DATA lpFindFileData
);

I need them like this:

Function: kernel32!FindFirstFile
Params:
push [pointer to WIN32_FIND_DATA]
push [pointer to filename string]
call kernel32!FindFirstFile

Return value: in EAX

 
Aaa Now I see..
I thought you need win32 API for assembling programs...

You can check APIViewer 2002 - Kinda I have seen small utility for asm conversion
 
API SPY is not any good. Shareware - can't remember where I saw it. It should tell what calls are made by a target app and list the params being sent. I never got enough info to convince me that I would get what I wanted from it, the web page etc was a broken link. But this kind of app would get you a bit further surely - if it worked!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top