19 lines
191 B
ObjectPascal
19 lines
191 B
ObjectPascal
unit u_alwaysrestore;
|
|
interface
|
|
|
|
[PCUAlwaysRestore]
|
|
function myfunc: integer;
|
|
|
|
type
|
|
[PCUAlwaysRestore]
|
|
MyClass = class
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
function myfunc: integer;
|
|
begin
|
|
|
|
end;
|
|
end. |