资源简介
用户拨打电话时系统自动播放已设定好的欢迎词。
客户通过按键选择,从而可以听到预先设置好的语音信息。
代码片段和文件信息
using System;
using System.Runtime.InteropServices;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
using System.Text;
namespace BmpUtil
{
using DWORD = UInt32;
using LPSTR = String;
using BOOL = Boolean;
[StructLayout(LayoutKind.Sequential)] public struct Bmp_Info{
int handle; //file handle
int width; // pixels per line
int high; // total lines
int bytes; // bytes per line
};
//a block of memory to hold a image bar
[StructLayout(LayoutKind.Sequential)] public struct Img_Block{
IntPtr ptr; //char* ptr;
int width;
int high;
};
public unsafe class BmpApi
{
[DllImport(“bmputil.dll“)]public static extern void fBmp_GetVersion(char* pVersion);
[DllImport(“bmputil.dll“)]public static extern void fBmp_WriteHead(Bmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern int fBmp_OpenBmp(char *filenameBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern int fBmp_CreatBlock(int widthint highImg_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_ClearBlock(Img_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_FreeBlock(Img_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern int fBmp_ReadImgFromBmp(int offsetImg_Block *img_blockBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern int fBmp_WriteImgToBmp(int offsetImg_Block *img_blockBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern int fBmp_CreatBmp(char *filenameint widthint highBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_CloseBmp(Bmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PrintText(int xint ychar *textImg_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutDot(int xint yImg_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_EraseDot(int xint yImg_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutLine(int x1int y1int x2int y2Img_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutText(int xint ychar *textint sizeImg_Block *img_block);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutDotB(int xint yBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_EraseDotB(int xint yBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutLineB(int x1int y1int x2int y2Bmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PutTextB(int xint ychar *textint sizeBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_PrintTextB(int xint ychar *textBmp_Info *bmp_info);
[DllImport(“bmputil.dll“)]public static extern void fBmp_SetFaxConvertMode(in
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 30016 2011-04-27 15:42 ShVoc\bin\Debug\Byebye.voc
文件 22400 2011-04-27 15:42 ShVoc\bin\Debug\D1.voc
文件 16960 2011-04-27 15:42 ShVoc\bin\Debug\D2.voc
文件 17920 2011-04-27 15:42 ShVoc\bin\Debug\D3.voc
文件 18304 2011-04-27 15:42 ShVoc\bin\Debug\D4.voc
文件 40442 2011-07-20 15:36 ShVoc\bin\Debug\Msg.wav
文件 25664 2011-04-27 15:42 ShVoc\bin\Debug\NoLvWord.voc
文件 212416 2011-04-27 15:42 ShVoc\bin\Debug\SelectB.voc
文件 14670 2011-07-16 15:58 ShVoc\bin\Debug\ShConfig.ini
文件 32 2011-07-22 10:13 ShVoc\bin\Debug\ShIndex.ini
文件 98304 2011-07-28 15:16 ShVoc\bin\Debug\ShVoc.exe
文件 34304 2011-07-28 15:16 ShVoc\bin\Debug\ShVoc.pdb
文件 5632 2005-11-11 22:25 ShVoc\bin\Debug\ShVoc.vshost.exe
文件 589882 2010-05-25 11:01 ShVoc\bin\Debug\WaitUserAnswer.wav
文件 14528 2011-04-27 15:42 ShVoc\bin\Debug\Welcom1.voc
文件 64704 2011-04-27 15:42 ShVoc\bin\Debug\Welcom2.voc
文件 6198 2011-05-27 16:29 ShVoc\BmpApi.cs
文件 23532 2011-07-28 15:16 ShVoc\Form1.cs
文件 4354 2011-07-22 10:16 ShVoc\Form1.Designer.cs
文件 5814 2011-07-22 10:16 ShVoc\Form1.resx
文件 842 2011-07-22 10:16 ShVoc\obj\Debug\ShVoc.csproj.GenerateResource.Cache
文件 98304 2011-07-28 15:16 ShVoc\obj\Debug\ShVoc.exe
文件 180 2011-07-22 10:16 ShVoc\obj\Debug\ShVoc.Form1.resources
文件 34304 2011-07-28 15:16 ShVoc\obj\Debug\ShVoc.pdb
文件 180 2011-05-27 15:57 ShVoc\obj\Debug\ShVoc.Properties.Resources.resources
文件 390 2011-07-28 15:16 ShVoc\obj\ShVoc.csproj.FileListAbsolute.txt
文件 25017 2011-07-22 16:48 ShVoc\Program.cs
文件 1182 2011-05-27 14:48 ShVoc\Properties\AssemblyInfo.cs
文件 2866 2011-05-27 14:48 ShVoc\Properties\Resources.Designer.cs
文件 5612 2011-05-27 14:48 ShVoc\Properties\Resources.resx
............此处省略18个文件信息
- 上一篇:C#毕业生信息管理系统源码
- 下一篇:俄罗斯方框UNITY项目案例包含代码
相关资源
- adsl 自动拨号类 源码
- C#联通网络宽带测试 拨号
- .net 实现adsl拨号功能 可拨号以及断开
- adsl拨号 换IP 类库 以及调用 DotRas
- C# adsl拨号换IP Demo源码(win xp/win7/wi
- 验证码识别+投票程序+自动换代理ip
- C# adsl 断网拨号源码(xp测试通过了)
- C# 自动拨号程序
- adsl拨号程序(C#)
- C# DotRas 获取IP地址(本地和网络ip地址
- VPN拨号 (诺宾VPN)
- c# 拨号换IP
- adsl拨号 有截图
- C# 获取本地拨号列表并实现拨号/创建
- ADSL宽带拨号 (C#)
- 拨号连接
- C# win8系统 adsl拨号换IP
- C# 启动电话拨号程序
- c# adsl拨号更换ip
- C#创建宽带连接(PPPOE)并拨号换IP(
- c# 语音卡电话呼叫系统 源码
- C# 语音卡电话呼叫系统源码
评论
共有 条评论