上一页 1 ··· 23 24 25 26 27
  2008年12月27日
摘要: ApplicationExampleusingtheATKReal-TimeAPI下面是一个关于HTK的例子#include"stdafx.h" #include"dllSudx.h" typedefvector<STRING>TStringArray;structASampleSet{charname[256];TSoundTagtags[301];};typedefvector<ASAMPLESET>TSampleSetList;TStringArraysampleList;TSampleSetListsampleSetLis 阅读全文
posted @ 2008-12-27 00:08 Yincheng 阅读(366) 评论(0) 推荐(0) 编辑
摘要: //patternDlg.cpp:implementationfile // #include"stdafx.h" #include"pattern.h" #include"patternDlg.h" #include"Afxwin.h" #include"Afxdlgs.h" #include"winuser.h" #include"Store.h" #include<STDIO.H> //#define_MBCS #ifdef_DEBUG 阅读全文
posted @ 2008-12-27 00:04 Yincheng 阅读(1040) 评论(5) 推荐(0) 编辑
  2008年12月25日
摘要: int i = 100;long l = 2001;float f=300.2;double d=12345.119;char username[]="程佩君";char temp[200];char *buf;CString str;_variant_t v1;_bstr_t v2;一、其它数据类型转换为字符串短整型(int)itoa(i,temp,10);///将i转换为字符串放入temp中,最后一个数字表示十进制itoa(i,temp,2); ///按二进制方式转换 长整型(long)ltoa(l,temp,10); 浮点数(float,double)用fcvt可以完 阅读全文
posted @ 2008-12-25 12:25 Yincheng 阅读(340) 评论(0) 推荐(0) 编辑
摘要: Earlier in this book we have looked at how to read HTML from websites, and how to navigate through websites using GET and POST requests. These techniques certainly offer high performance, but with many websites using cryptic POST data, complex cookie data, and JavaScript rendered text, it might be u 阅读全文
posted @ 2008-12-25 09:18 Yincheng 阅读(195) 评论(0) 推荐(0) 编辑
  2008年12月24日
摘要: 通过对CWMPPlayer4、CWMPSettings和CWMPControls等几个类的使用可以实现Windows Media Player的大部分常规功能,如果需要做进一步的控制,可以在用下面这些函数返回相关类对象后调用相关成员函数来加以实现: GetCurrentMedia() 返回CWMPMedia类对象 GetMediaCollection() 返回CWMPMediaCollection类对象 GetPlaylistCollection() 返回CWMPPlaylistCollection类对象 GetNetwork() 返回CWMPNetwork类对象 GetCurre... 阅读全文
posted @ 2008-12-24 17:39 Yincheng 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27