]> Shamusworld >> Repos - wozmaker/blobdiff - src/global.h
Add "settings" dialog, fixes to work with MXE cross-compilation.
[wozmaker] / src / global.h
index 09215950380eb57721960ee23d0d5854c0290f66..15b038a93f4478a3546142f18ae8251c1c5e400c 100644 (file)
@@ -4,8 +4,8 @@
 #include <stdint.h>
 
 class A2R;
-class A2RMetadata;
 class A2RStream;
+class Metadata;
 
 class Global
 {
@@ -13,7 +13,7 @@ class Global
        public:
                static A2R * a2r;
                static uint32_t a2rSize;
-               static A2RMetadata * metadata;
+               static Metadata * metadata;
                static A2RStream * stream[800];
                static uint32_t numStreams;
                static uint8_t bitStream[80000];
@@ -38,6 +38,8 @@ class Global
                static uint8_t bStream[141][80000];
                static uint32_t bStreamLen[141];
                static uint32_t bStreamLenBits[141];
+               static uint8_t meta[32][256];
+               static uint8_t metaCount;
 };
 
 #endif // __GLOBAL_H__