Sha256: aab00f3c56bfd8885645d51328ad9bc346eaa809444d30948c51c6e42b66dbff

Contents?: true

Size: 584 Bytes

Versions: 8

Compression:

Stored size: 584 Bytes

Contents

// WARNING! THIS FILE IS GENERATED AUTOMATICALLY! DO NOT EDIT IT MANUALLY!

#include <string.h>
#include <common/RhoConf.h>

//#include "app_build_configs.h"

static const char* keys[] = { ""
};

static const char* values[] = { ""
};

#define APP_BUILD_CONFIG_COUNT 1

const char* get_app_build_config_item(const char* key) {
  int i;
  const char* szValue;

  szValue = rho_conf_getString(key);
  if (strcmp(szValue, "") != 0)
    return szValue;

  for (i = 1; i < APP_BUILD_CONFIG_COUNT; i++) {
    if (strcmp(key, keys[i]) == 0) {
      return values[i];
    }
  }
  return 0;
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rhodes-5.5.18 platform/shared/common/app_build_configs.c
rhodes-5.5.17 platform/shared/common/app_build_configs.c
rhodes-5.5.15 platform/shared/common/app_build_configs.c
rhodes-5.5.0.22 platform/shared/common/app_build_configs.c
rhodes-5.5.2 platform/shared/common/app_build_configs.c
rhodes-5.5.0.7 platform/shared/common/app_build_configs.c
rhodes-5.5.0.3 platform/shared/common/app_build_configs.c
rhodes-5.5.0 platform/shared/common/app_build_configs.c