c++ flash under linux
I known how to use flash in my windows c++ application with ActiveX.
But what it the way to 开发者_如何学Cdo it under linux?
Under Linux, you'll need to load the Flash plugin using dlopen
, then use the plugin API (which the Flash plugin implements) to set up and interact with Flash. If there's a simpler way, I'm not aware of it.
See also Chromium's Linux plugin notes for more on the plugin API.
精彩评论