📄 jvqmtconsts.pas
字号:
{******************************************************************************}
{* WARNING: JEDI VCL To CLX Converter generated unit. *}
{* Manual modifications will be lost on next release. *}
{******************************************************************************}
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: MTConst.PAS, released on 2002-09-24.
The Initial Developer of the Original Code is Erwin Molendijk.
Portions created by Erwin Molendijk are Copyright (C) 2002 Erwin Molendijk.
All Rights Reserved.
Contributor(s): ______________________________________.
Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvQMTConsts.pas,v 1.13 2005/02/06 14:06:14 asnepvangers Exp $
unit JvQMTConsts;
{$I jvcl.inc}
interface
uses
SysUtils, Classes;
type
TMTTicket = Integer;
type
EMTThreadError = class(EThread);
EMTTerminateError = class(EAbort);
type
TMTThreadStatus =
(tsInitializing, tsWaiting, tsRunning, tsTerminating, tsFinished);
type
TThreadNameInfo = record
FType: Longword; // must be 0x1000
FName: PChar; // pointer to name (in user address space)
FThreadID: Longword; // thread ID (-1 indicates caller thread)
FFlags: Longword; // reserved for future use, must be zero
end;
const
MTDefaultBufferSize = 32;
implementation
{$IFDEF UNITVERSIONING}
uses
JclUnitVersioning;
const
UnitVersioning: TUnitVersionInfo = (
RCSfile: '$RCSfile: JvQMTConsts.pas,v $';
Revision: '$Revision: 1.13 $';
Date: '$Date: 2005/02/06 14:06:14 $';
LogPath: 'JVCL\run'
);
initialization
RegisterUnitVersion(HInstance, UnitVersioning);
finalization
UnregisterUnitVersion(HInstance);
{$ENDIF UNITVERSIONING}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -