repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git]
/
workbench
/
utilities
/
Snoopy
/
patches.h
blob
858d4668578373572c40f8cdeb1e2f2dbaa46476
1
/*
2
Copyright © 2006, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#ifndef PATCHES_H
7
#define PATCHES_H
8
9
void
patches_init
(
void
);
10
void
patches_set
(
void
);
11
void
patches_reset
(
void
);
12
13
enum
{
LIB_Dos
,
LIB_Exec
,
LIB_Icon
,
LIB_Intuition
,
LIB_Graphics
,
LIB_last
};
14
15
enum
{
16
PATCH_CreateDir
,
17
PATCH_CurrentDir
,
18
PATCH_DeleteFile
,
19
PATCH_DeleteVar
,
20
PATCH_Execute
,
21
PATCH_FindVar
,
22
PATCH_GetVar
,
23
PATCH_LoadSeg
,
24
PATCH_Lock
,
25
PATCH_MakeLink
,
26
PATCH_NewLoadSeg
,
27
PATCH_Open
,
28
PATCH_Rename
,
29
PATCH_RunCommand
,
30
PATCH_SetVar
,
31
PATCH_SystemTagList
,
32
PATCH_FindPort
,
33
PATCH_FindResident
,
34
PATCH_FindSemaphore
,
35
PATCH_FindTask
,
36
PATCH_OpenDevice
,
37
PATCH_OpenLibrary
,
38
PATCH_OpenResource
,
39
PATCH_LockPubScreen
,
40
PATCH_OpenFont
,
41
PATCH_FindToolType
,
42
PATCH_MatchToolValue
,
43
PATCH_last
44
};
45
46
#endif
47