27 lines
717 B
C
27 lines
717 B
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2001, 2002 Sanchez Computer Associates, Inc. *
|
||
|
* *
|
||
|
* This source code contains the intellectual property *
|
||
|
* of its copyright holder(s), and is made available *
|
||
|
* under a license. If you do not know the terms of *
|
||
|
* the license, please stop and do not read further. *
|
||
|
* *
|
||
|
****************************************************************/
|
||
|
|
||
|
#ifndef __ZROUTINES_H__
|
||
|
#define __ZROUTINES_H__
|
||
|
|
||
|
#include "zroutinessp.h"
|
||
|
|
||
|
#define ZRO_MAX_ENTS 4096
|
||
|
#define ZRO_TYPE_COUNT 1
|
||
|
#define ZRO_TYPE_OBJECT 2
|
||
|
#define ZRO_TYPE_SOURCE 3
|
||
|
#define ZRO_TYPE_OBJLIB 4
|
||
|
|
||
|
void zro_init(void);
|
||
|
void zro_load(mstr *str);
|
||
|
|
||
|
#endif
|