chatprotocolconstants.h

来自「一个聊天的软件」· C头文件 代码 · 共 40 行

H
40
字号
/*
* ==============================================================================
*  Name        : ChatProtocolConstants.h
*  Part of     : Chat
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef CHATPROTOCOLCONSTANTS_H
#define CHATPROTOCOLCONSTANTS_H

// INCLUDES
#include <bt_sock.h> 

const TInt KRfcommChannel = 1;
const TInt KServiceClass = 0x1101;    //  SerialPort

const TUid KUidChatApp = { 0x10005B8B };

_LIT( KStrRFCOMM, "RFCOMM" );

const TInt KListeningQueSize = 1;
const TInt KChatTextBufLength = 128;
const TInt KDefaultPortNumber = 5005;
const TInt KMaxServerNameLength = 256;
const TInt KMaxMarkLen = 2;

const TInt KChatTimeOut = 20000000; // 20 seconds time-out

#endif //CHATPROTOCOLCONSTANTS_H

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?