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

📄 phonetic.dpr

📁 语音与识别技术包含很多C语言处理模块系统
💻 DPR
字号:
program Phonetic;
                  
uses
  Forms,
  Windows,
  Edit in 'Edit.pas' {EditMainForm},
  TPlayWaveUnit in 'TWaveUnit\TPlayWaveUnit.pas',
  TRecordWaveUnit in 'TWaveUnit\TRecordWaveUnit.pas',
  TCMWaveType in 'TWaveUnit\TCMWaveType.pas',
  PublicType in 'PublicType.pas',
  SetVolSys in 'SetVolSys.pas' {SetVolSystem};

{$R *.res}
var
  h: HWND;
begin
  h := FindWindow(WaveSoundClass, NIL);
  if h > 0 then
  begin
    SendMessage(h, WM_CM_RESTORE, 0, 0);
    Exit;
  end;
  Application.Initialize;
  Application.CreateForm(TEditMainForm, EditMainForm);
  Application.Run;
end.

⌨️ 快捷键说明

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