summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-02-04 11:06:45 -0500
committermidipix <writeonce@midipix.org>2017-02-04 11:06:45 -0500
commitb6ea9a182fe169b50dcb824052e018f450dcdd4f (patch)
tree1b1e32707242ff573856f19fde3088da73be926f
parent9573d44d31aef2389807bd3d81038304c33da90d (diff)
downloadpemagine-b6ea9a182f.tar.bz2
pemagine-b6ea9a182f.tar.xz
annual chores.
-rw-r--r--COPYING.PEMAGINE2
-rw-r--r--LICENSE2
-rw-r--r--src/exports/pe_enum_image_exports.c2
-rw-r--r--src/exports/pe_get_export_symbol_info.c2
-rw-r--r--src/exports/pe_get_procedure_address.c2
-rw-r--r--src/headers/pe_get_image_coff_hdr_addr.c2
-rw-r--r--src/headers/pe_get_image_data_dirs_addr.c2
-rw-r--r--src/headers/pe_get_image_dos_hdr_addr.c2
-rw-r--r--src/headers/pe_get_image_entry_point_addr.c2
-rw-r--r--src/headers/pe_get_image_opt_hdr_addr.c2
-rw-r--r--src/headers/pe_get_image_section_tbl_addr.c2
-rw-r--r--src/headers/pe_get_image_special_hdr_addr.c2
-rw-r--r--src/imports/pe_enum_image_import_hdrs.c2
-rw-r--r--src/internal/pe_impl.h2
-rw-r--r--src/meta/pe_get_image_stack_heap_info.c2
-rw-r--r--src/meta/pe_get_symbol_module_info.c2
-rw-r--r--src/meta/pe_get_symbol_name.c2
-rw-r--r--src/modules/pe_enum_modules.c2
-rw-r--r--src/modules/pe_get_kernel32_module_handle.c2
-rw-r--r--src/modules/pe_get_module_handle.c2
-rw-r--r--src/modules/pe_get_ntdll_module_handle.c2
21 files changed, 21 insertions, 21 deletions
diff --git a/COPYING.PEMAGINE b/COPYING.PEMAGINE
index 84a1c25..a540a52 100644
--- a/COPYING.PEMAGINE
+++ b/COPYING.PEMAGINE
@@ -2,7 +2,7 @@
/* */
/* pemagination: a (virtual) tour into portable bits and executable bytes */
/* */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* */
/* This program is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
diff --git a/LICENSE b/LICENSE
index 1d607bb..ace5069 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,7 +1,7 @@
pemagination: a (virtual) tour into portable bits and executable bytes
----------------------------------------------------------------------
- Copyright (C) 2013--2016 Z. Gilboa
+ Copyright (C) 2013--2017 Z. Gilboa
This library is currently released under the GPLv2 and GPLv3 (see
COPYING.PEMAGINE for the relevant text). If you wish to use this
diff --git a/src/exports/pe_enum_image_exports.c b/src/exports/pe_enum_image_exports.c
index 42db1cd..b8ce6d1 100644
--- a/src/exports/pe_enum_image_exports.c
+++ b/src/exports/pe_enum_image_exports.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/exports/pe_get_export_symbol_info.c b/src/exports/pe_get_export_symbol_info.c
index fee44f9..c933cee 100644
--- a/src/exports/pe_get_export_symbol_info.c
+++ b/src/exports/pe_get_export_symbol_info.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/exports/pe_get_procedure_address.c b/src/exports/pe_get_procedure_address.c
index be232e3..68ac8b3 100644
--- a/src/exports/pe_get_procedure_address.c
+++ b/src/exports/pe_get_procedure_address.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_coff_hdr_addr.c b/src/headers/pe_get_image_coff_hdr_addr.c
index baceba3..9cb83cb 100644
--- a/src/headers/pe_get_image_coff_hdr_addr.c
+++ b/src/headers/pe_get_image_coff_hdr_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_data_dirs_addr.c b/src/headers/pe_get_image_data_dirs_addr.c
index 2edde04..fd77a5a 100644
--- a/src/headers/pe_get_image_data_dirs_addr.c
+++ b/src/headers/pe_get_image_data_dirs_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_dos_hdr_addr.c b/src/headers/pe_get_image_dos_hdr_addr.c
index 6c596b1..1f64b1b 100644
--- a/src/headers/pe_get_image_dos_hdr_addr.c
+++ b/src/headers/pe_get_image_dos_hdr_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_entry_point_addr.c b/src/headers/pe_get_image_entry_point_addr.c
index 9e197b8..2893b11 100644
--- a/src/headers/pe_get_image_entry_point_addr.c
+++ b/src/headers/pe_get_image_entry_point_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_opt_hdr_addr.c b/src/headers/pe_get_image_opt_hdr_addr.c
index 7bfa8fe..c9ee4d6 100644
--- a/src/headers/pe_get_image_opt_hdr_addr.c
+++ b/src/headers/pe_get_image_opt_hdr_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_section_tbl_addr.c b/src/headers/pe_get_image_section_tbl_addr.c
index 87ec39c..59ba777 100644
--- a/src/headers/pe_get_image_section_tbl_addr.c
+++ b/src/headers/pe_get_image_section_tbl_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/headers/pe_get_image_special_hdr_addr.c b/src/headers/pe_get_image_special_hdr_addr.c
index 8d1d9c6..325cfc3 100644
--- a/src/headers/pe_get_image_special_hdr_addr.c
+++ b/src/headers/pe_get_image_special_hdr_addr.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/imports/pe_enum_image_import_hdrs.c b/src/imports/pe_enum_image_import_hdrs.c
index 1b6100a..ec64c25 100644
--- a/src/imports/pe_enum_image_import_hdrs.c
+++ b/src/imports/pe_enum_image_import_hdrs.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/internal/pe_impl.h b/src/internal/pe_impl.h
index a316bf3..35501c2 100644
--- a/src/internal/pe_impl.h
+++ b/src/internal/pe_impl.h
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/meta/pe_get_image_stack_heap_info.c b/src/meta/pe_get_image_stack_heap_info.c
index eff7bd2..5a5e22a 100644
--- a/src/meta/pe_get_image_stack_heap_info.c
+++ b/src/meta/pe_get_image_stack_heap_info.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/meta/pe_get_symbol_module_info.c b/src/meta/pe_get_symbol_module_info.c
index 785a314..92d3cc3 100644
--- a/src/meta/pe_get_symbol_module_info.c
+++ b/src/meta/pe_get_symbol_module_info.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/meta/pe_get_symbol_name.c b/src/meta/pe_get_symbol_name.c
index 67b1410..fc19b33 100644
--- a/src/meta/pe_get_symbol_name.c
+++ b/src/meta/pe_get_symbol_name.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/modules/pe_enum_modules.c b/src/modules/pe_enum_modules.c
index c54e2e2..039d5b0 100644
--- a/src/modules/pe_enum_modules.c
+++ b/src/modules/pe_enum_modules.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/modules/pe_get_kernel32_module_handle.c b/src/modules/pe_get_kernel32_module_handle.c
index 1af03bf..c27f6fc 100644
--- a/src/modules/pe_get_kernel32_module_handle.c
+++ b/src/modules/pe_get_kernel32_module_handle.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/modules/pe_get_module_handle.c b/src/modules/pe_get_module_handle.c
index 8f592bd..35e0131 100644
--- a/src/modules/pe_get_module_handle.c
+++ b/src/modules/pe_get_module_handle.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
diff --git a/src/modules/pe_get_ntdll_module_handle.c b/src/modules/pe_get_ntdll_module_handle.c
index a50d18e..f933829 100644
--- a/src/modules/pe_get_ntdll_module_handle.c
+++ b/src/modules/pe_get_ntdll_module_handle.c
@@ -1,6 +1,6 @@
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
-/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/