Can I create a stuct with bit fields in DC?

Is it possible to do this with Dynamic C?

struct packed_struct {
unsigned int f1:1;
unsigned int f2:1;
unsigned int f3:1;
unsigned int f4:1;
unsigned int type:4;
unsigned int funny_int:9;
} pack;

Steve