I've been programming in VBA for Excel 2003 for some years now, and only recently I've been introduced to:
我已经在VBA for Excel 2003中编程了好几年了,直到最近我才被介绍到:
Declare Sub AAAA Lib "kernel32" Alias "AAAA"
By an answer here in *.
通过*中的答案。
What I've been unable to find is (no googlefu could help me):
我一直无法找到的是(没有googlefu可以帮助我):
-
What are all the functions available in "kernel32"
“kernel32”中可用的所有功能是什么
-
What are the other available (free) LIBS
什么是其他可用(免费)LIBS
-
Can I make my own?
我可以自己做吗?
I just need some pointers, ideias and/or tutorial links to point me in the right direction.
我只需要一些指针,ideias和/或教程链接指向我正确的方向。
Thank you all in advanced
先谢谢大家
2 个解决方案
#1
5
What you are looking at are Windows API declarations.
您正在查看的是Windows API声明。
Several popular examples include:
几个流行的例子包括:
- Declaring API functions in 64 bit Office
- 在64位Office中声明API函数
- API List
- API列表
- Windows APIs
- Windows API
As far your specific questions:
至于您的具体问题:
What are all the functions available in "kernel32"
“kernel32”中可用的所有功能是什么
A DLL viewer such as DLL Export Viewer or ApiViewer may be useful here.
DLL查看器(如DLL Export Viewer或ApiViewer)在此处可能很有用。
What are the other available (free) LIBS
什么是其他可用(免费)LIBS
See the links I posted, although I imagine there are dozens or hundreds more proprietary DLLs that we'll never find.
看到我发布的链接,虽然我想有几十个或几百个我们永远找不到的专有DLL。
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?
是的,但我只有创建ActiveX DLL的经验,所以我不能说。我确实找到了一个例子:什么是DLL?
#2
2
Here is a complete(I think) list. Hope this helps?
这是一个完整的(我认为)列表。希望这可以帮助?
http://eric.aling.tripod.com/PB/kernel.htm
http://eric.aling.tripod.com/PB/kernel.htm
Sid
希德
#1
5
What you are looking at are Windows API declarations.
您正在查看的是Windows API声明。
Several popular examples include:
几个流行的例子包括:
- Declaring API functions in 64 bit Office
- 在64位Office中声明API函数
- API List
- API列表
- Windows APIs
- Windows API
As far your specific questions:
至于您的具体问题:
What are all the functions available in "kernel32"
“kernel32”中可用的所有功能是什么
A DLL viewer such as DLL Export Viewer or ApiViewer may be useful here.
DLL查看器(如DLL Export Viewer或ApiViewer)在此处可能很有用。
What are the other available (free) LIBS
什么是其他可用(免费)LIBS
See the links I posted, although I imagine there are dozens or hundreds more proprietary DLLs that we'll never find.
看到我发布的链接,虽然我想有几十个或几百个我们永远找不到的专有DLL。
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?
是的,但我只有创建ActiveX DLL的经验,所以我不能说。我确实找到了一个例子:什么是DLL?
#2
2
Here is a complete(I think) list. Hope this helps?
这是一个完整的(我认为)列表。希望这可以帮助?
http://eric.aling.tripod.com/PB/kernel.htm
http://eric.aling.tripod.com/PB/kernel.htm
Sid
希德