	IFND LIBRARIES_PATCHOBSOLETE_I
LIBRARIES_PATCHOBSOLETE_I SET 1
**
**	Filename:	libraries/patchobsolete.i
**	Release:	5.0
**	Date:		20.08.96
**
**	(C) Copyright 1993-96 Stefan Fuchs
**	All rights reserved
**
**      definition of structures, which are obsolete with the current version
**         of patch.library


	IFND EXEC_TYPES_I
	include "exec/types.i"
	ENDC


;-------------------------------------------------------------------------
;Structure required to install new patches via patch.library/InstallPatch()

 STRUCTURE NewPatch,0			;this structure is OBSOLETE from V2 on
	APTR	NPAT_NewCode		;pointer to the patch code to be installed
	ULONG	NPAT_NewCodeSize	;optional length of NPAT_NewCode in bytes
	APTR	NPAT_LibraryName	;pointer to the LibraryName
	UWORD	NPAT_LibVersion		;version of Library to open
	WORD	NPAT_LVO		;LVO of function to patch
	WORD	NPAT_Priority		;Priority (-127...+126) of the patch
	UWORD	NPAT_Flags		;currently none defined (keep zero)
	APTR	NPAT_PatchName		;optional pointer to an IDString
	LONG	NPAT_Result2		;optional pointer to longword for Result2

 LABEL NPAT_SIZEOF

	ENDC	;LIBRARIES_PATCHOBSOLETE_I
