X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=zilasm%2Fdirectives.h;h=b1ddd2385b444652b746ac2fec547a712155fa44;hb=c0f515aab1285fdedb65d4582b42cc59db0c8e26;hp=5b5982ebf96ba7a30253e57a68c2b36e32da5997;hpb=e66bff85f58de39f1b850a713413b0d9c10bb9a1;p=zilutils.git diff --git a/zilasm/directives.h b/zilasm/directives.h index 5b5982e..b1ddd23 100644 --- a/zilasm/directives.h +++ b/zilasm/directives.h @@ -1,7 +1,7 @@ /* * directives.h -- part of ZilUtils/ZilAsm * - * Copyright (C) 2016 Jason Self + * Copyright (C) 2016, 2020 Jason Self * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -22,13 +22,16 @@ #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 g_fileHandlers; #endif /* ifndef ZILASM_DIRECTIVES */