From 0ac9fcea2d966814e07aa426c84ac7bb9925abb6 Mon Sep 17 00:00:00 2001 From: Borja Ferrer Date: Mon, 31 Jul 2006 21:42:02 +0000 Subject: [PATCH] new error type --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%4045 --- sourcepawn/include/sp_vm_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sourcepawn/include/sp_vm_types.h b/sourcepawn/include/sp_vm_types.h index 9569b924..c4a8d815 100644 --- a/sourcepawn/include/sp_vm_types.h +++ b/sourcepawn/include/sp_vm_types.h @@ -15,6 +15,7 @@ typedef int32_t cell_t; #define SP_ERR_HEAPLOW 3 /* Not enough space left on the heap */ #define SP_ERR_PARAM 4 /* Invalid parameter */ #define SP_ERR_INVALID_ADDRESS 5 /* A memory address was not valid */ +#define SP_ERR_NOT_FOUND 6 /* File not found */ /********************************************** *** The following structures are reference structures.