Windows Blibiotecas to use in Assembly

Asked

Viewed 198 times

1

Which libraries I use to build a Windows GUI, and its respective functions?

Example: I can import the library msvcrt.dll to use C functions.

I have some experience in Assembly for low-level code, but not so much to build a .exe running on Windows.

Basically I want to know which libraries to use to make an application with graphical interface.

I know the language well and I don’t need you to teach me, just speak the libraries and how to use them.

2 answers

3


  • Thank you, that’s exactly what I needed.

0

Programming for the native Windows GUI (Win32) is a fairly extensive subject.

To study seriously I recommend following a book, such as the classic "Programming in Windows" by Charles Petzold.
(https://www.amazon.com.br/gp/product/B00JDMP71S/ref=pd_sim_351_1? ie=UTF8&psc=1&refRID=ZBACE0VE2R00P4XB0V5Z)

For casual use there are numerous examples on the net, just Google, for example: http://www.win32developer.com/tutorial/windows/windows_tutorial_1.shtm
http://winprog.org/tutorial/
http://www.relisoft.com/win32/
etc.

and here an example from Microsoft itself:
https://msdn.microsoft.com/en-us/library/bb384843.aspx

Browser other questions tagged

You are not signed in. Login or sign up in order to post.