Exemplo n.º 1
0
        /* =============================================================== */

        public C_PP_CLI_COM()
        {
            //
            // TODO: 생성자 논리를 여기에 추가합니다.
            //
            m_c_Payplus = null;

            m_f__init_data();
        }
Exemplo n.º 2
0
        /* =============================================================== */
        /* +    초기화                                                   + */
        /* - ----------------------------------------------------------- - */
        public bool m_f__init()
        {
            bool bRT = true;

            if (m_c_Payplus == null)
            {
                m_c_Payplus = new PP_CLI_COMLib.KCP();
                if (m_c_Payplus == null)
                {
                    bRT = false;
                }
            }

            if (bRT == true)
            {
                m_c_Payplus.lf_PP_CLI_LIB__init(m_strKeyPath,
                                                m_strLogPath, 3, m_strKCPGWUrl, m_strKCPGWPort);
                m_f__init_data();
            }

            return(bRT);
        }