AnyTypePNTR Construct_RealAnyType0(float value, char* type) {
  AnyTypePNTR this = Construct_AnyType();
  if(this != NULL){
    this->value.real_value = value;
    this->type = type;
  }	
  return this;
}
AnyTypePNTR Construct_ByteAnyType0(uint8_t value, char* type) {
  AnyTypePNTR this = Construct_AnyType();
  if(this != NULL){
    this->value.byte_value = value;
    this->type = type;
  }
  return this;
}
AnyTypePNTR Construct_PointerAnyType0(void* value, char* type) {
  AnyTypePNTR this = Construct_AnyType();
  if(this != NULL){
    DAL_assign(&this->value.pointer_value, value);
    this->type = type;
  }	
  return this;
}
AnyTypePNTR Construct_UnsignedIntAnyType0(unsigned value, char *type) {
  AnyTypePNTR this = Construct_AnyType();
  if(this != NULL){
    this->value.unsigned_value = value;
    this->type = type;
  }
  return this;
}