1 #ifndef _ICD_STRUCTS_H_ 2 #define _ICD_STRUCTS_H_ 3 4 typedef struct CLIicdDispatchTable_st CLIicdDispatchTable; 5 typedef struct CLIplatform_st CLIplatform; 6 7 struct CLIicdDispatchTable_st 8 { 9 void *entries[256]; 10 int entryCount; 11 }; 12 13 struct CLIplatform_st 14 { 15 CLIicdDispatchTable* dispatch; 16 }; 17 18 #endif /* _ICD_STRUCTS_H_ */ 19