CefColorSetARGB   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/external/cef/cef.xtm

Implementation

(bind-func CefColorSetARGB
  (lambda (a:i8 r:i8 g:i8 b:i8)
    (bor (bor (bor (<< (i8toi32 a) 24) (<< (i8toi32 r) 16)) (<< (i8toi32 g) 8)) (<< (i8toi32 b) 0))))


Back to Index