?? igpscomm.cpp
字號:
///////////////////////////////////////////////////////////////////////////////
// IGpsComm.cpp : implementation of the IGpsComm class
//
// Copyright (c) 2004,上海合眾思壯科技有限責任公司GIS部
//
// All rights reserved
//
// 文件名稱:IGpsComm.cpp
//
// 摘要 :通訊接口類
//
// 作者 :Hansom
//
// 當前版本:1.1
//
// 完成日期:2004年04月12日
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "IGpsComm.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
// Hansom Add 200405081300 debugfile
void DebugFile(const TCHAR * lpszFormat, ...)
{
FILE *fp =_wfopen(_T("Debug_Comm.txt"), _T("at"));
if (fp){
va_list(arglist);
va_start(arglist, lpszFormat);
vfwprintf(fp, lpszFormat, arglist);
va_end(arglist);
fclose(fp);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -