mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 16:32:40 +02:00
22 lines
337 B
ObjectPascal
22 lines
337 B
ObjectPascal
unit FpDebugStringConstants;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
drsKeyForAddress = 'Key for Address';
|
|
drsKeyForTypename = 'Key for Typename';
|
|
|
|
drsFunctionName = 'Function name';
|
|
drsCallSysVarToLStr = 'Call SysVarToLStr';
|
|
drsCallJsonForDebug = 'Call JsonForDebug';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|