home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / sviluppo / fm2000 / child.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-02-04  |  1.3 KB  |  41 lines

  1. /*
  2.      Filemaster - Multitasking directory utility.
  3.      Copyright (C) 2000  Toni Wilen
  4.      
  5.      This program is free software; you can redistribute it and/or
  6.      modify it under the terms of the GNU General Public License
  7.      as published by the Free Software Foundation; either version 2
  8.      of the License, or (at your option) any later version.
  9.      
  10.      This program is distributed in the hope that it will be useful,
  11.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.      GNU General Public License for more details.
  14.      
  15.      You should have received a copy of the GNU General Public License
  16.      along with this program; if not, write to the Free Software
  17.      Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19.  
  20. void initproc(struct FMList*,UBYTE*);
  21. void endproc(struct FMList*);
  22. WORD setalloc(struct FMList*,WORD);
  23. struct ProcMsg *sinitproc(void);
  24. void deinitproc(struct ProcMsg*);
  25. WORD tstsubproc(WORD);
  26. WORD testabort(struct FMList*);
  27. WORD askabort(struct FMList*);
  28. void changename(struct FMList*,UBYTE*);
  29. WORD launch(APTR,struct CMenuConfig*,WORD,WORD);
  30. void priority(struct CMenuConfig*);
  31.  
  32. struct ProcMsg {
  33.     struct CMenuConfig *cmc;
  34. };
  35.  
  36. struct FMPort {
  37.     struct MsgPort msgport;
  38.     struct FMMain *fmmain;
  39.     struct FMConfig *fmconfig;
  40. };
  41.