vinnitu
vinnitu

Reputation: 4364

c++ flash under linux

I known how to use flash in my windows c++ application with ActiveX.

But what it the way to do it under linux?

Upvotes: 4

Views: 553

Answers (1)

outis
outis

Reputation: 77400

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.

Upvotes: 3

Related Questions