Daniel Colasci=
one <
dancol@dancol.org> schr=
ieb am So., 15. Feb. 2015 um 21:21=C2=A0Uhr:
=C2=A0 typedef struct emacs_value_tag* emacs_value;
Would it make sense to not use a typedef h=
ere? Using a typedef means that the type including its size is opaque and s=
ubject to change, which can break ABI compatibility. I'd rather have so=
mething like:
struct emacs_value {
=C2=
=A0 // contains private fields
};
and th=
en pass=C2=A0struct emacs_value*=C2=A0around.