// This file is a part of the Framsticks GenoFX library. // Copyright (C) 2002-2011 Maciej Komosinski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef _GENO_FX_H_ #define _GENO_FX_H_ #include "nonstd.h" #include "model.h" /** @file */ /** \name Return codes for genetic operators */ //@{ #define GENOPER_OK 0 ///>24) #define GENGETCOLOR(style) ((style)&0x00ffffff) #define GENGET_R(style) ((style)&0xff) #define GENGET_G(style) ((style>>8)&0xff) #define GENGET_B(style) ((style>>16)&0xff) #define GENCOLOR_TEXT GENRGB(0,0,0) ///