1/*
2    Title:      Operating Specific functions.
3
4    Copyright (c) 2000, 2016 David C. J. Matthews
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License version 2.1 as published by the Free Software Foundation.
9
10    This library 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 GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
19*/
20
21#ifndef _OSSPEC_H
22#define _OSSPEC_H
23
24class SaveVecEntry;
25typedef SaveVecEntry *Handle;
26class TaskData;
27
28extern Handle OS_spec_dispatch_c(TaskData *taskData, Handle args, Handle code);
29
30extern struct _entrypts osSpecificEPT[];
31
32#endif
33