Checking for existence of Windows API Functions

前端 未结 8 1796
鱼传尺愫
鱼传尺愫 2021-01-05 14:17

I am new to Windows programming and I\'m trying to discover the best way to check for the existence of Windows Shell API functions. I want to use some of the new taskbar fea

相关标签:
8条回答
  • 2021-01-05 15:11

    Yes you can always check for the existence of function within a library at runtime and take suitable actions. Check the LoadLibrary and GetProcAddress APIs. http://msdn.microsoft.com/en-us/library/ms683212(VS.85).aspx

    0 讨论(0)
  • 2021-01-05 15:13

    LoadLibrary and GetProcAddress will be your friends.

    Also, check out this tutorial.

    0 讨论(0)
提交回复
热议问题