summaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-04-09 14:36:47 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2011-04-09 14:36:47 -0400
commit51b2033057b25f4cecd3d5e73dc49b60b532834e (patch)
tree129120a683d01c00c6deb50349c48d8975dfd573 /include/types.h
parent039b577f61a2bdf98abe10c5f10c8e3539a59d19 (diff)
Each context gets its own non-repeating sequence of source numbers
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h
index 28658862..1e479398 100644
--- a/include/types.h
+++ b/include/types.h
@@ -35,6 +35,11 @@ typedef struct {
unsigned cli, chn;
} uw_Basis_channel;
+typedef struct {
+ int context;
+ unsigned long long source;
+} uw_Basis_source;
+
typedef struct uw_Basis_file {
uw_Basis_string name, type;
uw_Basis_blob data;