summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/builtin/builtin_palette.ml
blob: 4eab69a0f976a57b1d524f9efb1d86d61f540b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##ifdef CAMLTK

(* type *)
type paletteType =
  | GrayShades of int
  | RGBShades of int * int * int
;;
(* /type *)

##else

(* type *)
type paletteType = [
  | `Gray of int
  | `Rgb of int * int * int
]
;;
(* /type *)

##endif