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

📄 acmenum.dpr

📁 Voice Commnucation Components for Delphi
💻 DPR
字号:

(*
	----------------------------------------------

	  acmEnum.dpr
	  Voice Communicator components version 2.5
	  Audio Tools - simple ACM enumeration application

	----------------------------------------------
	  This source code cannot be used without
	  proper permission granted to you as a private
	  person or an entity by the Lake of Soft, Ltd

	  Visit http://lakeofsoft.com/ for details.

	  Copyright (c) 2001, 2005 Lake of Soft, Ltd
		     All rights reserved
	----------------------------------------------

	  created by:
		Lake, Sep 2001

	  modified by:
		Lake, Jan-Jun 2002
		Lake, Jun 2003
		Lake, Oct 2005

	----------------------------------------------
*)

{$DEFINE NO_SU_AUTODEFINE }

{$I unaDef.inc}

{$APPTYPE CONSOLE }

program
  acmEnum;

uses
  Windows, MMSystem,
  unaTypes, unaUtils, unaMsAcmAPI;

// --  --
function htmlFix(const value: string): string;
var
  i: int;
begin
  i := 1;
  result := '';
  //
  while (i <= length(value)) do begin
    //
    case (value[i]) of

      '&':
	result := result + '&amp;';

      '

⌨️ 快捷键说明

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