xref: /illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/string_table.h (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
17c478bd9Sstevel@tonic-gate /*
2*56a424ccSmp153739  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
3*56a424ccSmp153739  * Use is subject to license terms.
47c478bd9Sstevel@tonic-gate  */
57c478bd9Sstevel@tonic-gate 
67c478bd9Sstevel@tonic-gate #ifndef _STRING_TABLE_H
77c478bd9Sstevel@tonic-gate #define	_STRING_TABLE_H
87c478bd9Sstevel@tonic-gate 
97c478bd9Sstevel@tonic-gate /*
107c478bd9Sstevel@tonic-gate  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
117c478bd9Sstevel@tonic-gate  *
127c478bd9Sstevel@tonic-gate  *	Openvision retains the copyright to derivative works of
137c478bd9Sstevel@tonic-gate  *	this source code.  Do *NOT* create a derivative of this
147c478bd9Sstevel@tonic-gate  *	source code before consulting with your legal department.
157c478bd9Sstevel@tonic-gate  *	Do *NOT* integrate *ANY* of this source code into another
167c478bd9Sstevel@tonic-gate  *	product before consulting with your legal department.
177c478bd9Sstevel@tonic-gate  *
187c478bd9Sstevel@tonic-gate  *	For further information, read the top-level Openvision
197c478bd9Sstevel@tonic-gate  *	copyright which is contained in the top-level MIT Kerberos
207c478bd9Sstevel@tonic-gate  *	copyright.
217c478bd9Sstevel@tonic-gate  *
227c478bd9Sstevel@tonic-gate  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
237c478bd9Sstevel@tonic-gate  *
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
277c478bd9Sstevel@tonic-gate extern "C" {
287c478bd9Sstevel@tonic-gate #endif
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate /*
317c478bd9Sstevel@tonic-gate  * Copyright 1993 OpenVision Technologies, Inc., All Rights Reserved.
327c478bd9Sstevel@tonic-gate  *
337c478bd9Sstevel@tonic-gate  * $Header: /afs/athena.mit.edu/astaff/project/krbdev/.cvsroot/src/kadmin/\
347c478bd9Sstevel@tonic-gate  * dbutil/string_table.h,v 1.2 1996/07/22 20:25:25 marc Exp $
357c478bd9Sstevel@tonic-gate  *
367c478bd9Sstevel@tonic-gate  */
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #ifndef _OVSEC_ADM_STRINGS_
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate extern char *str_PARSE_NAME;
417c478bd9Sstevel@tonic-gate extern char *str_HISTORY_PARSE_NAME;
427c478bd9Sstevel@tonic-gate extern char *str_ADMIN_PRINC_EXISTS;
437c478bd9Sstevel@tonic-gate extern char *str_CHANGEPW_PRINC_EXISTS;
447c478bd9Sstevel@tonic-gate extern char *str_HISTORY_PRINC_EXISTS;
457c478bd9Sstevel@tonic-gate extern char *str_ADMIN_PRINC_WRONG_ATTRS;
467c478bd9Sstevel@tonic-gate extern char *str_CHANGEPW_PRINC_WRONG_ATTRS;
477c478bd9Sstevel@tonic-gate extern char *str_HISTORY_PRINC_WRONG_ATTRS;
487c478bd9Sstevel@tonic-gate extern char *str_CREATED_PRINC_DB;
497c478bd9Sstevel@tonic-gate extern char *str_CREATED_POLICY_DB;
507c478bd9Sstevel@tonic-gate extern char *str_RANDOM_KEY;
517c478bd9Sstevel@tonic-gate extern char *str_ENCRYPT_KEY;
527c478bd9Sstevel@tonic-gate extern char *str_PUT_PRINC;
537c478bd9Sstevel@tonic-gate extern char *str_CREATING_POLICY_DB;
547c478bd9Sstevel@tonic-gate extern char *str_CLOSING_POLICY_DB;
557c478bd9Sstevel@tonic-gate extern char *str_CREATING_PRINC_DB;
567c478bd9Sstevel@tonic-gate extern char *str_CLOSING_PRINC_DB;
577c478bd9Sstevel@tonic-gate extern char *str_CREATING_PRINC_ENTRY;
587c478bd9Sstevel@tonic-gate extern char *str_A_PRINC;
597c478bd9Sstevel@tonic-gate extern char *str_UNPARSE_PRINC;
607c478bd9Sstevel@tonic-gate extern char *str_CREATED_PRINC;
617c478bd9Sstevel@tonic-gate extern char *str_INIT_KDB;
627c478bd9Sstevel@tonic-gate extern char *str_NO_KDB;
637c478bd9Sstevel@tonic-gate extern char *str_INIT_RANDOM_KEY;
647c478bd9Sstevel@tonic-gate extern char *str_TOO_MANY_ADMIN_PRINC;
657c478bd9Sstevel@tonic-gate extern char *str_TOO_MANY_CHANGEPW_PRINC;
667c478bd9Sstevel@tonic-gate extern char *str_TOO_MANY_HIST_PRINC;
677c478bd9Sstevel@tonic-gate extern char *str_WHILE_DESTROYING_ADMIN_SESSION;
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate #endif /* _OVSEC_ADM_STRINGS_ */
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
727c478bd9Sstevel@tonic-gate }
737c478bd9Sstevel@tonic-gate #endif
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate #endif	/* !_STRING_TABLE_H */
76