00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one 00003 * or more contributor license agreements. See the NOTICE file 00004 * distributed with this work for additional information 00005 * regarding copyright ownership. The ASF licenses this file 00006 * to you under the Apache License, Version 2.0 (the 00007 * "License"); you may not use this file except in compliance 00008 * with the License. You may obtain a copy of the License at 00009 * 00010 * http://www.apache.org/licenses/LICENSE-2.0 00011 * 00012 * Unless required by applicable law or agreed to in writing, 00013 * software distributed under the License is distributed on an 00014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00015 * KIND, either express or implied. See the License for the 00016 * specific language governing permissions and limitations 00017 * under the License. 00018 */ 00019 00020 #ifndef _GUAC_CLIENT_CONSTANTS_H 00021 #define _GUAC_CLIENT_CONSTANTS_H 00022 00033 #define GUAC_CLIENT_MAX_STREAMS 64 00034 00038 #define GUAC_CLIENT_CLOSED_STREAM_INDEX -1 00039 00043 #define GUAC_CLIENT_ID_PREFIX '$' 00044 00048 #define GUAC_CLIENT_MOUSE_LEFT 0x01 00049 00053 #define GUAC_CLIENT_MOUSE_MIDDLE 0x02 00054 00058 #define GUAC_CLIENT_MOUSE_RIGHT 0x04 00059 00067 #define GUAC_CLIENT_MOUSE_SCROLL_UP 0x08 00068 00076 #define GUAC_CLIENT_MOUSE_SCROLL_DOWN 0x10 00077 00084 #define GUAC_BUFFER_POOL_INITIAL_SIZE 1024 00085 00086 #endif 00087