18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 */ 23 24 #include "enums.h" 25 26 int red_green() { 27 return R | G; 28 } 29 30 int green_blue() { 31 return G | B; 32 } 33 34 int red_green_blue() { 35 return R | G | B; 36 } 37 38 int iminfunc() { 39 return I_MIN; 40 } 41 42 int imaxfunc() { 43 return I_MAX; 44 } 45 46 long lminfunc() { 47 return L_MIN; 48 } 49 50 long lmaxfunc() { 51 return L_MAX; 52 } | 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 */ 23 24 #include "enums.h" 25 26 int red_green() { 27 return R | G; 28 } 29 30 int green_blue() { 31 return G | B; 32 } 33 34 int red_green_blue() { 35 return R | G | B; 36 } 37 38 int i_value1_func() { 39 return I_VALUE1; 40 } 41 42 int i_value2_func() { 43 return I_VALUE2; 44 } 45 46 long l_value1_func() { 47 return L_VALUE1; 48 } 49 50 long l_value2_func() { 51 return L_VALUE2; 52 } |