< prev index next >

test/jdk/com/sun/tools/jextract/anonenum.h

Print this page
rev 49470 : [mq]: 8200452

*** 24,28 **** --- 24,50 ---- enum { RED = 0xff0000, GREEN = 0x00ff00, BLUE = 0x0000ff }; + + typedef enum { + Java, + C, + CPP, + Python, + Ruby + } codetype_t; + + enum SIZE { + XS, + S, + M, + L, + XL, + XXL + }; + + typedef enum temp { + ONE = 1, + TWO + } temp_t;
< prev index next >