Skip to content

Commit

Permalink
hds: Define a stub HDS wild carding struct
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Oct 31, 2014
1 parent a18d136 commit 3245c4b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libraries/hds/make-hds-types.c
Expand Up @@ -310,6 +310,16 @@ int main (int argc, char ** argv ) {
"#endif\n"
"\n");

/* HDS wild card matching needs a struct but we just create a stub for now
until we know for sure how it's going to work. Has never worked in C anyhow */
fprintf( OutputFile,
"/* HDS Wild card matching structure */\n"
"/* This is a stub structure. The C API for this routine is unstable */\n"
"typedef struct HDSWild {\n"
" int wild;\n"
"} HDSWild;\n"
"\n");

/* Dimensions */
fprintf( OutputFile,
"/* Public type for specifying HDS dimensions */\n"
Expand Down

0 comments on commit 3245c4b

Please sign in to comment.