diff --git a/Source/exehead/plugin.c b/Source/exehead/plugin.c index 066516a2..6e01453f 100644 --- a/Source/exehead/plugin.c +++ b/Source/exehead/plugin.c @@ -1,3 +1,19 @@ +/* + * plugin.c + * + * This file is a part of NSIS. + * + * Copyright (C) 1999-2008 Nullsoft and Contributors + * + * Licensed under the zlib/libpng license (the "License"); + * you may not use this file except in compliance with the License. + * + * Licence details can be found in the file COPYING. + * + * This software is provided 'as-is', without any express or implied + * warranty. + */ + #include "plugin.h" #ifdef NSIS_CONFIG_PLUGIN_SUPPORT diff --git a/Source/exehead/plugin.h b/Source/exehead/plugin.h index c6fd54b9..4fe3288f 100644 --- a/Source/exehead/plugin.h +++ b/Source/exehead/plugin.h @@ -1,5 +1,21 @@ -#ifndef _PLUGINCALLBACKS_H_ -#define _PLUGINCALLBACKS_H_ +/* + * plugin.h + * + * This file is a part of NSIS. + * + * Copyright (C) 1999-2008 Nullsoft and Contributors + * + * Licensed under the zlib/libpng license (the "License"); + * you may not use this file except in compliance with the License. + * + * Licence details can be found in the file COPYING. + * + * This software is provided 'as-is', without any express or implied + * warranty. + */ + +#ifndef _PLUGIN_H_ +#define _PLUGIN_H_ #include "../Platform.h" #include "fileform.h" @@ -33,4 +49,4 @@ extern BOOL NSISCALL Plugins_CanUnload(HANDLE pluginHandle); #endif /* #ifdef NSIS_CONFIG_PLUGIN_SUPPORT */ -#endif /* _PLUGINCALLBACKS_H_ */ +#endif /* _PLUGIN_H_ */