c-type-align-first ( name -- n )


Vocabulary
alien.c-types

Definition
IN: alien.c-types

GENERIC: c-type-align-first ( name -- n )


Methods
USING: accessors alien.c-types ;

M: abstract-c-type c-type-align-first align-first>> ;


USING: alien.c-types arrays sequences ;

M: array c-type-align-first first c-type-align-first ;


USING: alien.c-types kernel ;

M: c-type-name c-type-align-first
[ lookup-c-type ] call \ c-type-align-first execute ;


USING: accessors alien.c-types alien.enums.private kernel ;

M: enum-c-type c-type-align-first
[ base-type>> ] call \ c-type-align-first execute ;


USING: alien.arrays alien.c-types kernel ;

M: string-type c-type-align-first
drop void* c-type-align-first ;