The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: captainron on April 12, 2005, 06:55:30 AM

Title: accessing kernel32 functions
Post by: captainron on April 12, 2005, 06:55:30 AM
i'm looking for any information on calling library functions (kernel32.inc in particular)
Title: Re: accessing kernel32 functions
Post by: Brett Kuntz on April 12, 2005, 08:26:07 AM
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
Title: Re: accessing kernel32 functions
Post by: Vortex on April 12, 2005, 04:55:02 PM
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
Title: Re: accessing kernel32 functions
Post by: captainron on April 13, 2005, 12:43:12 AM
thanks for the response guys, those were both useful to me.
Title: Re: accessing kernel32 functions
Post by: thomasantony on April 14, 2005, 04:13:18 PM
Add the libraries you require like this in the following format:

include \masm32\include\kernel32.inc

includelib \masm32\lib\kernel32.lib


Thomas :U