Added error messages displaying using source file name and line number
[zilutils.git] / zilasm / directives.h
index fc889d17ed3b1770aadf7f9ceacf4e3ed2eb38f8..b1ddd2385b444652b746ac2fec547a712155fa44 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * directives.h -- part of ZilUtils/ZilAsm
  *
- * Copyright (C) 2016 Jason Self <j@jxself.org>
+ * Copyright (C) 2016, 2020 Jason Self <j@jxself.org>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_DIRECTIVES
 #define ZILASM_DIRECTIVES 1
 
-typedef int (*Directive_handler)(const char *directive_args);
+typedef int (*Directive_handler) (const char *directive_args);
 
-typedef struct {
-       const char        name[16];
-       Directive_handler handler;
+typedef struct
+{
+  const char name[16];
+  Directive_handler handler;
 } Directive;
 
-Directive_handler directive_lookup(const char *name, unsigned namelen);
+Directive_handler directive_lookup (const char *name, unsigned namelen);
+extern int g_stopParsing;
+extern stack<FILE*> g_fileHandlers;
 
 #endif /* ifndef ZILASM_DIRECTIVES */