/*******************************************************************************
;*******************************************************************************
;**                                                                           **
;**                    COPYRIGHT 2008-2011 NUANCE COMMUNICATIONS              **
;**                                                                           **
;**               NUANCE COMMUNICATIONS PROPRIETARY INFORMATION               **
;**                                                                           **
;**     This software is supplied under the terms of a license agreement      **
;**     or non-disclosure agreement with Nuance Communications and may not    **
;**     be copied or disclosed except in accordance with the terms of that    **
;**     agreement.                                                            **
;**                                                                           **
;**                                                                           **
;*******************************************************************************
;**                                                                           **
;**     FileName: et9ksys.h                                                   **
;**                                                                           **
;**  Description: Header file to Korean XT9 system module.                    **
;**                                                                           **
;*******************************************************************************
;******************************************************************************/


#ifndef __et9_korean_sys_h__
#define __et9_korean_sys_h__

#define ET9_K_LINGINFO_IS_INIT(pKLing)                         \
     ( (pKLing) &&                                             \
       (pKLing)->Base.pWordSymbInfo &&                         \
       (pKLing)->wInitOK == ET9GOODSETUP &&                    \
       (pKLing)->Base.pWordSymbInfo->wInitOK == ET9GOODSETUP )

#define ET9_K_CHECK_LINGINFO(pKLing)      if ( ET9_K_LINGINFO_IS_INIT(pKLing) == 0 ) { return ET9STATUS_NO_INIT; }

#endif
