Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

user32 and kernel method list for C# [closed]

Tags:

c#

winapi

Is there a good list of what we can import from user32.dll and kernel.dll and use in C#? I am new to Windows API and I want to know more about those two libraries.

like image 336
Imad Nabil Alnatsheh Avatar asked Jul 16 '13 03:07

Imad Nabil Alnatsheh


1 Answers

http://www.pinvoke.net/ is the best place to look up examples of API's.

Also the Help Manual with Visual Studio 6 has a Win32.chm.

Here is a link to the VS2008 documentation (2.2GB) and it has 99% of the win32 API info: https://www.microsoft.com/en-us/download/details.aspx?id=20955&751be11f-ede8-5a0c-058c-2ee190a24fa6=True

like image 89
Jeremy Thompson Avatar answered Sep 25 '22 07:09

Jeremy Thompson