diff options
author | saurabhb17 | 2020-02-26 15:57:49 +0530 |
---|---|---|
committer | saurabhb17 | 2020-02-26 15:57:49 +0530 |
commit | aa35045840b78d3f48212db45da59a2e5c69b223 (patch) | |
tree | 6acee185a4dc19113fcbf0f9a3d6941085dedaf7 /pcbnew/pcbnew_config.h | |
parent | 0db48f6533517ecebfd9f0693f89deca28408b76 (diff) | |
download | KiCad-eSim-aa35045840b78d3f48212db45da59a2e5c69b223.tar.gz KiCad-eSim-aa35045840b78d3f48212db45da59a2e5c69b223.tar.bz2 KiCad-eSim-aa35045840b78d3f48212db45da59a2e5c69b223.zip |
Added main execs
Diffstat (limited to 'pcbnew/pcbnew_config.h')
-rw-r--r-- | pcbnew/pcbnew_config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pcbnew/pcbnew_config.h b/pcbnew/pcbnew_config.h new file mode 100644 index 0000000..f4c153e --- /dev/null +++ b/pcbnew/pcbnew_config.h @@ -0,0 +1,17 @@ +/** + * @file pcbnew_config.h + * @brief Configuration parameters for Pcbnew. + */ + +#ifndef _PCBNEW_CONFIG_H_ +#define _PCBNEW_CONFIG_H_ + +#include <config_params.h> +#include <colors_selection.h> + +/* Useful macro : */ +#define LOC_COLOR(layer) &g_ColorsSettings.m_LayersColors[layer] +#define ITEM_COLOR(item_visible) &g_ColorsSettings.m_ItemsColors[item_visible] + + +#endif // _PCBNEW_CONFIG_H_ |