C ++ flash under linux

I knew how to use flash in my windows C ++ application with ActiveX.

But what is this way to do it under Linux?

+4
source share
1 answer

On Linux, you will need to download the Flash plugin using dlopen , then use the plugin API (which implements the Flash plugin) to configure and interact with Flash. If there is an easier way, I do not know about it.

See also Chromium Linux plugin notes for more information on the plugin API.

+3
source

All Articles