⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 obexstrings.h

📁 wince用EVC编译的蓝牙扫描,文件传输,耳机控制软件.完完整软件包!MIPS,ARM编译通过 obexparser.lib filebrowser.cpp devicechooser.cpp
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
//Based on Strings.h by Eric Davison


#ifndef OBEX_STRINGS_H
#define OBEX_STRINGS_H

#undef CONST_STRING
#undef CONST_STRINGA
#undef CONST_STRINGW

#ifdef _STRINGS_DEFINE_STRINGS

    #define CONST_STRING(rg,s)   const TCHAR rg[] = TEXT(s);
    #define CONST_STRINGA(rg,s) const char rg[] = s;
    #define CONST_STRINGW(rg,s)  const WCHAR rg[] = s;

#else

    #define CONST_STRING(rg,s)   extern const TCHAR rg[];
    #define CONST_STRINGA(rg,s) extern const char rg[];
    #define CONST_STRINGW(rg,s)  extern const WCHAR rg[];

#endif

// general strings
CONST_STRING(c_szDeviceServiceUUID,     "ServiceUUID")
CONST_STRING(c_szDevicePropName,        "Name")
CONST_STRING(c_szDevicePropAddress,     "Address")
CONST_STRING(c_szDevicePropTransport,   "Transport")
CONST_STRING(c_szIrda,				    "IrDA")
CONST_STRING(c_szBluetooth,				"Bluetooth")
CONST_STRING(c_szIp,                    "TCP/IP")
CONST_STRING(c_szServiceName,           "ServiceName")
CONST_STRING(c_szPort,                  "Port")
CONST_STRING(c_szIpPort,                "650")
CONST_STRING(c_szCap1,					"1")
CONST_STRING(c_szCap2,					"2")
CONST_STRING(c_szCap4,					"4")
CONST_STRING(c_szIrdaPort1,			    "OBEX:IrXfer")
CONST_STRING(c_szIrdaPort2,             "OBEX")
CONST_STRING(c_szObex,					"OBEX")
CONST_STRING(c_szInboxName,				"Push Profile (Inbox)")
CONST_STRING(c_szFileBrowsingName,      "File Browsing")
CONST_STRING(c_szSyncName,              "IrMC Syncronization")

#endif

⌨️ 快捷键说明

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