home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / sonstiges / tools / ToolManager / Developer / c / dlib / change.c next >
Encoding:
C/C++ Source or Header  |  1998-10-06  |  727 b   |  24 lines

  1. /*
  2.  * change.c  V3.0
  3.  *
  4.  * VarArgs stub for ChangeTMObjectTagList
  5.  *
  6.  * Copyright (C) 1990-97 Stefan Becker
  7.  *
  8.  * This source code is for educational purposes only. You may study it
  9.  * and copy ideas or algorithms from it for your own projects. It is
  10.  * not allowed to use any of the source codes (in full or in parts)
  11.  * in other programs. Especially it is not allowed to create variants
  12.  * of ToolManager or ToolManager-like programs from this source code.
  13.  *
  14.  */
  15.  
  16. #include <clib/toolmanager_protos.h>
  17. #include <pragmas/toolmanager_pragmas.h>
  18. extern struct Library *ToolManagerBase;
  19.  
  20. BOOL ChangeTMObjectTags(void *handle, char *obj, ULONG tag1, ...)
  21. {
  22.  return(ChangeTMObjectTagList(handle, obj, (struct TagItem *) &tag1));
  23. }
  24.