<?php
/*
* Harris WapChat
*
* http://www.successkid.com
*
* Harris WapChat is a wap chat application for personal and corporate used.
* Visit {@link http://www.successkid.com} for more info.
* Copyright (C) 2005 Harris Yusuf Arifin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author Harris Yusuf Arifin <[email protected]>
* @copyright Copyright 2005, Harris Yusuf Arifin
*
* Please support this software by send DONATION to E-GOLD account :
* E-gold Number : 827550
* E-gold Name : earthweb egold
*/
$chineseCharset="GB2312";
$utfCharset="UTF-8";
/* DECK FILES
* Note : Carefull it's case sensitive
*/
define("FILE_WAP_DISCONNECTED", "wapDisconnected.php");
define("FILE_CONFIG", "config.php");
define("FILE_FORWARD", "forward.php");
define("FILE_OPEN_DATABASE", "OpenDatabase.php");
define("FILE_CLOSE_DATABASE", "closeDatabase.php");
define("FILE_CENTER_POINT", "centerPoint.php");
define("FILE_FUNCTIONS", "functionsChat.php");
define("FILE_HEAD_TYPE", "headertype.php");
define("FILE_HEADER_WML", "headerwml.php");
define("FILE_DISPLAY_MODUL", "displaymodule.php");
define("FILE_CHAT_ROOM", "eng.room.php");
define("FILE_CREATE_ROOM", "eng.createRoom.php");
define("FILE_CREATE_ROOM_SAVE", "eng.saveNewRoom.php");
define("FILE_ROOM_DELETE", "eng.roomDelete.php");
define("FILE_ROOM_DISP", "eng.dispRoom.php");
define("FILE_ROOM_ENTER", "eng.roomEnter.php");
define("FILE_CHAT_ROOM_WRITE", "eng.writeMsg.php");
define("FILE_CHAT_ROOM_VIEW_MEMBER", "eng.viewMember.php");
define("FILE_ROOM_OPTIONS", "eng.chatOptions.php");
define("FILE_SEARCH_MEMBER", "eng.searchMember.php");
define("FILE_RESULT_MEMBER", "eng.resultMember.php");
define("FILE_NEW_USER", "eng.newUser.php");
define("FILE_CEKPASS", "cekpass.php");
define("FILE_CHAT_ADCREATE", "eng.adCreate.php");
define("FILE_CHAT_ADEDIT", "eng.adTypeDisp.php");
define("FILE_CHAT_ADCREATE_SAVE", "eng.adCreateSave.php");
define("FILE_CHAT_AD_DISP_AD", "eng.adDispByType.php");
define("FILE_CHAT_AD_DISP_AD_OPTIONS", "eng.adDispByTypeOptions.php");
define("FILE_CHAT_AD_DELETE", "eng.adDelete.php");
define("FILE_CHAT_AD_DISP_ROOM", "eng.adDispRoom.php");
define("FILE_CHAT_AD_GOTO_SETDEFAULT", "eng.adSetDefault.php");
define("FILE_CHAT_AD_GOTO_DEACTIVATED", "eng.adDeactivated.php");
define("FILE_CHAT_AD_GOTO_EDTTEXT", "eng.adEdit.php");
define("FILE_CHAT_FORWARD", "eng.forward.php");
define("FILE_CHAT_AD_EDIT_SAVE", "eng.adEditSave.php");
define("FILE_CHAT_AD_VIEW", "eng.adView.php");
define("FILE_CHAT_ROOM_DELETE_CONFIRM", "eng.roomDeleteConfirm.php");
define("FILE_LOGIN", "eng.login.php");
define("FILE_START", "eng.startPage.php");
define("FILE_CHAT_PAGELOGOUT", "eng.pageLogout.php");
define("CHOICE_GOTO_ROOM", "1");
define("CHOICE_ROOM_CREATE", "2");
define("CHOICE_ROOM_DEL" , "3");
define("CHOICE_ROOM_CREATE_SAVE" , "4");
define("CHOICE_ROOM_DELETE" , "5");
define("CHOICE_ROOM_DISPROOM" , "6");
define("CHOICE_ROOM_ENTER" , "7");
define("CHOICE_ROOM_GOTO_WRITE", "8");
define("CHOICE_ROOM_GOTO_VIEW_MEMBER", "9");
define("CHOICE_ROOM_GOTO_SEARCH_MEMBER", "10");
define("CHOICE_ROOM_SEND_MSG", "11");
define("CHOICE_ROOM_GOTO_EXIT", "12");
define("CHOICE_CONVERSATION_REFRESH", "13");
define("CHOICE_ROOM_GOTO_OPTIONS", "14");
define("CHOICE_ROOM_RESULT_MEMBER", "15");
define("CHOICE_ROOM_GOTO_CHANGE_ROOM", "16");
define("CHOICE_ADV_EDIT", "17");
define("CHOICE_ADV_CREATE", "18");
define("CHOICE_AD_CREATE_SAVE", "19");
define("CHOICE_AD_DISP_AD", "20");
define("CHOICE_AD_DISP_AD_OPTIONS", "21");
define("CHOICE_ROOM_AD_EDIT", "22");
define("CHOICE_ROOM_AD_GOTO_SETDEFAULT", "23");
define("CHOICE_ROOM_AD_GOTO_DELETE", "24");
define("CHOICE_ADV_DISP_ROOM", "25");
define("CHOICE_ROOM_AD_GOTO_DEACTIVE", "26");
define("CHOICE_ROOM_AD_EDITTEXT", "27");
define("CHOICE_CONVERSATION_GOTO_FORWARD", "28");
define("CHOICE_AD_EDIT_SAVE", "29");
define("CHOICE_ROOM_AD_GOTO_VIEW", "30");
define("CHOICE_ROOM_DELETE_CONFIRM", "31");
include(FILE_CONFIG);
?>