diff options
Diffstat (limited to 'src/file/runfile/runlockfile.cil')
-rw-r--r-- | src/file/runfile/runlockfile.cil | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/file/runfile/runlockfile.cil b/src/file/runfile/runlockfile.cil new file mode 100644 index 0000000..1ce70f9 --- /dev/null +++ b/src/file/runfile/runlockfile.cil @@ -0,0 +1,38 @@ +;; SPDX-FileCopyrightText: © 2023 Dominick Grift <dominick.grift@defensec.nl> +;; SPDX-License-Identifier: Unlicense + +(block runlock + + (blockinherit .file.runlock.template)) + +(in file + + (block runlock + + (macro type ((type ARG1)) + (typeattributeset typeattr ARG1)) + + (blockinherit file.all_macro_template_dirs) + (blockinherit file.all_macro_template_files) + (blockinherit file.all_macro_template_lnk_files) + + (typeattribute typeattr) + + (call run.type (typeattr)) + + (block base_template + + (blockabstract base_template) + + (blockinherit .file.run.base_template) + + (call .file.runlock.type (file))) + + (block template + + (blockabstract template) + + (blockinherit .file.macro_template_dirs) + (blockinherit .file.macro_template_files) + (blockinherit .file.macro_template_lnk_files) + (blockinherit .file.runlock.base_template)))) |