home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d886 / patchlibrary.lha / PatchLibrary / Includes / patch_protos.h next >
C/C++ Source or Header  |  1993-07-16  |  381b  |  13 lines

  1. /* patch_protos.h - prototypes for patch.library functions */
  2. /* (C) Copyright 1993 Stefan Fuchs                         */
  3.  
  4. #ifndef CLIB_PATCH_H
  5. #define CLIB_PATCH_H
  6.  
  7. struct Patch *InstallPatch( struct NewPatch *newPatch );
  8. ULONG WaitRemovePatch( struct Patch *patch );
  9. ULONG RemovePatch( struct Patch *patch );
  10. struct Patch *FindPatch( UBYTE *name );
  11.  
  12. #endif  /* CLIB_PATCH_H */
  13.