mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00

* fixed printed source code positions in error message in case the external name of a formal and of a real definition don't match git-svn-id: trunk@20425 -
15 lines
326 B
ObjectPascal
15 lines
326 B
ObjectPascal
{$mode objfpc}
|
|
{$modeswitch objectivec1}
|
|
|
|
unit uobjc39;
|
|
interface
|
|
|
|
type
|
|
UITextInputDelegateProtocol = objcprotocol external name 'UITextInputDelegate';
|
|
UITextInputTokenizerProtocol = objcprotocol external name 'UITextInputTokenizer';
|
|
UITextInputProtocol = objcprotocol external name 'UITextInput';
|
|
|
|
implementation
|
|
|
|
end.
|