i'm looking for any information on calling library functions (kernel32.inc in particular)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winprog/winprog/functions_by_category.asp
http://msdn.microsoft.com/library/en-us/winprog/winprog/functions_in_alphabetical_order.asp
Also masm comes with like 4 million cool examples and tutorials by various people, you can find some of them here:
\masm32\examples\EXAMPLE1\GENERIC
D:\masm32\icztutes
Hi captainron,
Welcome to the forum.
Below, you can download the Win32 API function reference file covering also kernel32 functions.
http://spiff.tripnet.se/~iczelion/files/win32api.zip
thanks for the response guys, those were both useful to me.
Add the libraries you require like this in the following format:
include \masm32\include\kernel32.inc
includelib \masm32\lib\kernel32.lib
Thomas :U