Hi,

On Wed, 2009-03-11 at 14:17 -0600, Mallory Kyle wrote:
> g++34 -ggdb -Wno-deprecated-declarations -O0 -shared -I./include -I./
> [...]
> These the offending lines from interface_implementation.h:
> 
> static DirectInterfaceFuncs interface_funcs = {
>        .GetType            = GetType,
>        .GetImplementation  = GetImplementation,
>        .Allocate           = Allocate,
>        .Probe              = (DirectInterfaceGenericProbeFunc) Probe,
>        .Construct          = (DirectInterfaceGenericConstructFunc)
> Construct
> };

I believe (even new versions of) g++ do not recognize the new naming
scheme, you must use the old one:
struct {
  GetType: GetType,
}

etc.


a.


_______________________________________________
directfb-users mailing list
directfb-users@directfb.org
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-users

Reply via email to