Excel 2003 VBA - kernel32 functions - and other libs
What you are looking at are Windows API declarations.
Several popular examples include:
- Declaring API functions in 64 bit Office
- API List
- Windows APIs
As far your specific questions:
What are all the functions available in "kernel32"
A DLL viewer such as DLL Export Viewer or ApiViewer may be useful here.
What are the other available (free) LIBS
See the links I posted, although I imagine there are dozens or hundreds more proprietary DLLs that we'll never find.
Can I make my own?
Yes, but I only have experience creating ActiveX DLLs so I can't speak to that. I did find one example, however: What is a DLL?
Here is a complete(I think) list. Hope this helps?
http://eric.aling.tripod.com/PB/kernel.htm
Sid