From 3e3ff87ce6d29c3a6f0026cd7f330a384493675a Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Mon, 8 Apr 2013 15:30:29 -0700 Subject: Updating license year --- LICENSE-MIT | 3 +++ examples/amqp_bind.c | 3 +++ examples/amqp_consumer.c | 3 +++ examples/amqp_exchange_declare.c | 3 +++ examples/amqp_listen.c | 3 +++ examples/amqp_listenq.c | 3 +++ examples/amqp_producer.c | 3 +++ examples/amqp_rpc_sendstring_client.c | 3 +++ examples/amqp_sendstring.c | 3 +++ examples/amqp_unbind.c | 3 +++ examples/unix/platform_utils.c | 3 +++ examples/utils.c | 3 +++ examples/utils.h | 3 +++ examples/win32/platform_utils.c | 3 +++ librabbitmq/amqp.h | 3 +++ librabbitmq/amqp_api.c | 3 +++ librabbitmq/amqp_connection.c | 3 +++ librabbitmq/amqp_framing.c | 3 +++ librabbitmq/amqp_framing.h | 3 +++ librabbitmq/amqp_mem.c | 3 +++ librabbitmq/amqp_private.h | 3 +++ librabbitmq/amqp_socket.c | 3 +++ librabbitmq/amqp_table.c | 3 +++ librabbitmq/amqp_url.c | 3 +++ librabbitmq/codegen.py | 9 +++++++++ librabbitmq/unix/socket.c | 3 +++ librabbitmq/unix/socket.h | 3 +++ librabbitmq/win32/socket.c | 3 +++ librabbitmq/win32/socket.h | 3 +++ tests/test_parse_url.c | 3 +++ tests/test_tables.c | 3 +++ tools/common.c | 3 +++ tools/common.h | 3 +++ tools/consume.c | 3 +++ tools/declare_queue.c | 3 +++ tools/delete_queue.c | 3 +++ tools/get.c | 3 +++ tools/publish.c | 3 +++ tools/unix/process.c | 3 +++ tools/unix/process.h | 3 +++ tools/win32/compat.c | 3 +++ tools/win32/compat.h | 3 +++ tools/win32/process.c | 3 +++ tools/win32/process.h | 3 +++ 44 files changed, 138 insertions(+) diff --git a/LICENSE-MIT b/LICENSE-MIT index 486e6e0..5c7630d 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,3 +1,6 @@ +Portions created by Alan Antonuk are Copyright (c) 2012-2013 +Alan Antonuk. All Rights Reserved. + Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. All Rights Reserved. diff --git a/examples/amqp_bind.c b/examples/amqp_bind.c index 3c9a863..b778d25 100644 --- a/examples/amqp_bind.c +++ b/examples/amqp_bind.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_consumer.c b/examples/amqp_consumer.c index aa63346..878bf29 100644 --- a/examples/amqp_consumer.c +++ b/examples/amqp_consumer.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_exchange_declare.c b/examples/amqp_exchange_declare.c index 749109c..a12319b 100644 --- a/examples/amqp_exchange_declare.c +++ b/examples/amqp_exchange_declare.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_listen.c b/examples/amqp_listen.c index 0347375..1e8fa79 100644 --- a/examples/amqp_listen.c +++ b/examples/amqp_listen.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_listenq.c b/examples/amqp_listenq.c index 762831d..8d9c3e3 100644 --- a/examples/amqp_listenq.c +++ b/examples/amqp_listenq.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_producer.c b/examples/amqp_producer.c index 4a1cd68..229756b 100644 --- a/examples/amqp_producer.c +++ b/examples/amqp_producer.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_rpc_sendstring_client.c b/examples/amqp_rpc_sendstring_client.c index 7914e2c..3357524 100644 --- a/examples/amqp_rpc_sendstring_client.c +++ b/examples/amqp_rpc_sendstring_client.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_sendstring.c b/examples/amqp_sendstring.c index f1456c9..424bd68 100644 --- a/examples/amqp_sendstring.c +++ b/examples/amqp_sendstring.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/amqp_unbind.c b/examples/amqp_unbind.c index 011f561..77ac724 100644 --- a/examples/amqp_unbind.c +++ b/examples/amqp_unbind.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/unix/platform_utils.c b/examples/unix/platform_utils.c index 6e356cb..777d56b 100644 --- a/examples/unix/platform_utils.c +++ b/examples/unix/platform_utils.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/utils.c b/examples/utils.c index 328a5e5..609c354 100644 --- a/examples/utils.c +++ b/examples/utils.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/utils.h b/examples/utils.h index f1d40b3..2e7b15f 100644 --- a/examples/utils.h +++ b/examples/utils.h @@ -6,6 +6,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/examples/win32/platform_utils.c b/examples/win32/platform_utils.c index dff6243..afcbac8 100644 --- a/examples/win32/platform_utils.c +++ b/examples/win32/platform_utils.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h index c379125..121b1e3 100644 --- a/librabbitmq/amqp.h +++ b/librabbitmq/amqp.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_api.c b/librabbitmq/amqp_api.c index aacaf91..4a84bd3 100644 --- a/librabbitmq/amqp_api.c +++ b/librabbitmq/amqp_api.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_connection.c b/librabbitmq/amqp_connection.c index be7b1a8..b3196b1 100644 --- a/librabbitmq/amqp_connection.c +++ b/librabbitmq/amqp_connection.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_framing.c b/librabbitmq/amqp_framing.c index 6a5f9ee..22d97b8 100644 --- a/librabbitmq/amqp_framing.c +++ b/librabbitmq/amqp_framing.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_framing.h b/librabbitmq/amqp_framing.h index baf7771..f6dafe4 100644 --- a/librabbitmq/amqp_framing.h +++ b/librabbitmq/amqp_framing.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_mem.c b/librabbitmq/amqp_mem.c index 0f49df2..b0844e5 100644 --- a/librabbitmq/amqp_mem.c +++ b/librabbitmq/amqp_mem.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_private.h b/librabbitmq/amqp_private.h index 191155e..68239d1 100644 --- a/librabbitmq/amqp_private.h +++ b/librabbitmq/amqp_private.h @@ -6,6 +6,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_socket.c b/librabbitmq/amqp_socket.c index 8454d45..5e7fa9c 100644 --- a/librabbitmq/amqp_socket.c +++ b/librabbitmq/amqp_socket.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_table.c b/librabbitmq/amqp_table.c index d9383d6..847770e 100644 --- a/librabbitmq/amqp_table.c +++ b/librabbitmq/amqp_table.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/amqp_url.c b/librabbitmq/amqp_url.c index d3e6724..277b5a6 100644 --- a/librabbitmq/amqp_url.c +++ b/librabbitmq/amqp_url.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/codegen.py b/librabbitmq/codegen.py index 5ae5a8f..fedc0fb 100644 --- a/librabbitmq/codegen.py +++ b/librabbitmq/codegen.py @@ -2,6 +2,9 @@ # ***** BEGIN LICENSE BLOCK ***** # Version: MIT # +# Portions created by Alan Antonuk are Copyright (c) 2012-2013 +# Alan Antonuk. All Rights Reserved. +# # Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. # All Rights Reserved. # @@ -340,6 +343,9 @@ def genErl(spec): * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * @@ -558,6 +564,9 @@ def genHrl(spec): * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/unix/socket.c b/librabbitmq/unix/socket.c index 8c8ba6b..38064f1 100644 --- a/librabbitmq/unix/socket.c +++ b/librabbitmq/unix/socket.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/unix/socket.h b/librabbitmq/unix/socket.h index dd69e7b..1382ca3 100644 --- a/librabbitmq/unix/socket.h +++ b/librabbitmq/unix/socket.h @@ -6,6 +6,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/win32/socket.c b/librabbitmq/win32/socket.c index f3c8fc7..a5d9454 100644 --- a/librabbitmq/win32/socket.c +++ b/librabbitmq/win32/socket.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/librabbitmq/win32/socket.h b/librabbitmq/win32/socket.h index 43e2a13..cea361d 100644 --- a/librabbitmq/win32/socket.h +++ b/librabbitmq/win32/socket.h @@ -6,6 +6,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tests/test_parse_url.c b/tests/test_parse_url.c index 585514d..b816cd8 100644 --- a/tests/test_parse_url.c +++ b/tests/test_parse_url.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tests/test_tables.c b/tests/test_tables.c index 21e1c01..f7144dd 100644 --- a/tests/test_tables.c +++ b/tests/test_tables.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/common.c b/tools/common.c index bead858..7659521 100644 --- a/tools/common.c +++ b/tools/common.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/common.h b/tools/common.h index 77979ee..cc186ec 100644 --- a/tools/common.h +++ b/tools/common.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/consume.c b/tools/consume.c index c52311e..f4af4e2 100644 --- a/tools/consume.c +++ b/tools/consume.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/declare_queue.c b/tools/declare_queue.c index 25a94b1..57ba0a3 100644 --- a/tools/declare_queue.c +++ b/tools/declare_queue.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/delete_queue.c b/tools/delete_queue.c index 4ebbd94..4df0992 100644 --- a/tools/delete_queue.c +++ b/tools/delete_queue.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/get.c b/tools/get.c index bbcde72..357e66a 100644 --- a/tools/get.c +++ b/tools/get.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/publish.c b/tools/publish.c index 617b055..f9e4380 100644 --- a/tools/publish.c +++ b/tools/publish.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/unix/process.c b/tools/unix/process.c index 249fba3..9b25f4b 100644 --- a/tools/unix/process.c +++ b/tools/unix/process.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/unix/process.h b/tools/unix/process.h index a211f27..6f22404 100644 --- a/tools/unix/process.h +++ b/tools/unix/process.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/win32/compat.c b/tools/win32/compat.c index 7c7d97e..9a59175 100644 --- a/tools/win32/compat.c +++ b/tools/win32/compat.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/win32/compat.h b/tools/win32/compat.h index 74cacbe..d3c2b61 100644 --- a/tools/win32/compat.h +++ b/tools/win32/compat.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/win32/process.c b/tools/win32/process.c index 4d5270b..ec57db8 100644 --- a/tools/win32/process.c +++ b/tools/win32/process.c @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * diff --git a/tools/win32/process.h b/tools/win32/process.h index 88f2c7a..2df5d5d 100644 --- a/tools/win32/process.h +++ b/tools/win32/process.h @@ -3,6 +3,9 @@ * ***** BEGIN LICENSE BLOCK ***** * Version: MIT * + * Portions created by Alan Antonuk are Copyright (c) 2012-2013 + * Alan Antonuk. All Rights Reserved. + * * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc. * All Rights Reserved. * -- cgit v1.2.1