1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/****************************************************************
* *
* Copyright 2013, 2014 Fidelity Information Services, 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 GTMLINK_H_INCLUDED
#define GTMLINK_H_INCLUDED
enum gtm_link_type
{
LINK_NORECURSIVE = 0,
LINK_RECURSIVE,
LINK_MAXTYPE
};
void init_relink_allowed(mstr *keyword);
#ifdef DEBUG
void check_max_keyword_len(void);
#endif
#endif /* GTMLINK_H_INCLUDED */
|