2007年9月18日 星期二

加入可以讓 PE 驗證Bluetooth MAC 的機制

typedef FILE* stream;
stream f_in;
int numclosed;

建立一個可寫入data的檔案並設其路徑
f_in = _wfopen(L"\\My Flash Disk\\BTMAC.txt",L"w");
char s=':';

將 Bluetooth MAC 依序寫入檔案
for(i=0;i<=5;i++)
{
fwprintf(f_in,L"%x",toc->bBTAddr[i]);
if(i<5)
fwprintf(f_in,L"%c",s);
}

numclosed = fcloseall();

沒有留言: