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

📄 btwlib.h

📁 基于widcomm的蓝牙传输功能程序
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////
//
//  Name        BtwLib.h
//  $Header:
//
//  Function    this file facilitates linking the SDK library and including
//  			other SDK headers
//
//  Date                 Modification
//  ----------------------------------
//  09/11/2003    HZ   Create
//
//  Copyright (c) 2000-2006, Broadcom Corporation, All Rights Reserved.
//
//////////////////////////////////////////////////////////////////////////////

#pragma once
#if (_MSC_FULL_VER >= 140050727)
    // use this lib for VS2005 wchar definition 
    // Note: using _MSC_VER >= 1400 is not sufficient, MSFT VC++ 6.0 under AMD64 
    // configuration February 2003 Platform SDK, the compiler (incorrectly) identifies
    // itself as 1400, so this is the accurate method.
    //
    // See Programmer's Guide - must redistribute btwapi.dll to use BtWdSdkLib.lib on
    // older BTW stack targets
    #ifdef _WIN64
        #pragma comment(lib, "..\\..\\sdk\\release\\x64\\BtWdSdkLib.lib")
    #else
        #pragma comment(lib, "..\\..\\sdk\\release\\BtWdSdkLib.lib")
    #endif
#else
    // use this for previous compilers
    #ifdef _WIN64
        #pragma comment(lib, "..\\..\\sdk\\release\\amd64\\WidcommSdklib.lib")
    #else
        #pragma comment(lib, "..\\..\\sdk\\release\\WidcommSdklib.lib")
    #endif
#endif

#include "BtIfDefinitions.h"
#include "BtIfClasses.h"

⌨️ 快捷键说明

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