/* * Copyright © 2015 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #ifndef GENX_PACK_H #define GENX_PACK_H #ifndef GEN_VERSIONx10 # error "The GEN_VERSIONx10 macro must be defined" #endif #if (GEN_VERSIONx10 == 40) # include "genxml/gen4_pack.h" #elif (GEN_VERSIONx10 == 45) # include "genxml/gen45_pack.h" #elif (GEN_VERSIONx10 == 50) # include "genxml/gen5_pack.h" #elif (GEN_VERSIONx10 == 60) # include "genxml/gen6_pack.h" #elif (GEN_VERSIONx10 == 70) # include "genxml/gen7_pack.h" #elif (GEN_VERSIONx10 == 75) # include "genxml/gen75_pack.h" #elif (GEN_VERSIONx10 == 80) # include "genxml/gen8_pack.h" #elif (GEN_VERSIONx10 == 90) # include "genxml/gen9_pack.h" #else # error "Need to add a pack header include for this gen" #endif #endif /* GENX_PACK_H */