00001 // H460.h: 00002 /* 00003 * Virteos H.460 Implementation for the OpenH323 Project. 00004 * 00005 * Virteos is a Trade Mark of ISVO (Asia) Pte Ltd. 00006 * 00007 * Copyright (c) 2004 ISVO (Asia) Pte Ltd. All Rights Reserved. 00008 * 00009 * The contents of this file are subject to the Mozilla Public License 00010 * Version 1.0 (the "License"); you may not use this file except in 00011 * compliance with the License. You may obtain a copy of the License at 00012 * http://www.mozilla.org/MPL/ 00013 * 00014 * Software distributed under the License is distributed on an "AS IS" 00015 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See 00016 * the License for the specific language governing rights and limitations 00017 * under the License. 00018 * 00019 * The Original Code is derived from and used in conjunction with the 00020 * OpenH323 Project (www.openh323.org/) 00021 * 00022 * The Initial Developer of the Original Code is ISVO (Asia) Pte Ltd. 00023 * 00024 * 00025 * Contributor(s): ______________________________________. 00026 * 00027 */ 00028 00029 #if !defined(_H460_H) 00030 #define _H460_H 00031 00032 #ifdef P_USE_PRAGMA 00033 #pragma interface 00034 #endif 00035 00036 class H460_MessageType 00037 { 00038 public: 00039 enum { 00040 e_gatekeeperRequest, 00041 e_gatekeeperConfirm, 00042 e_gatekeeperReject, 00043 e_registrationRequest, 00044 e_registrationConfirm, 00045 e_registrationReject, 00046 e_admissionRequest, 00047 e_admissionConfirm, 00048 e_admissionReject, 00049 e_locationRequest, 00050 e_locationConfirm, 00051 e_locationReject, 00052 e_nonStandardMessage, 00053 e_serviceControlIndication, 00054 e_serviceControlResponse, 00055 e_callProceeding, 00056 e_connect, 00057 e_alerting, 00058 e_facility 00059 }; 00060 }; 00061 00062 #endif // !defined(_H460_H) 00063