Re: [fpc-pascal] importtl tool

2016-10-20 Thread José Mejuto
El 20/10/2016 a las 15:20, LacaK escribió: There is: if bParamByRef then case FD^.lprgelemdescParam[k].paramdesc.wParamFlags and (PARAMFLAG_FIN or PARAMFLAG_FOUT) of PARAMFLAG_FIN or PARAMFLAG_FOUT:sPar:='var '; PARAMFLAG_FOUT:sPar:='out ';

Re: [fpc-pascal] importtl tool

2016-10-20 Thread LacaK
Dňa 20.10.2016 o 14:05 José Mejuto napísal(a): El 20/10/2016 a las 11:09, LacaK escribió: Hi, I have noticed, that tool for importing type library into pas incorrectly imports interface methods, which should have "var" parameter. For example in my case imported: function

Re: [fpc-pascal] importtl tool

2016-10-20 Thread José Mejuto
El 20/10/2016 a las 11:09, LacaK escribió: Hi, I have noticed, that tool for importing type library into pas incorrectly imports interface methods, which should have "var" parameter. For example in my case imported: function ScGetStringValue(Type_:Integer;Value:WideString):Integer;dispid

Re: [fpc-pascal] Class helper method overloading ?

2016-10-20 Thread LacaK
http://bugs.freepascal.org/view.php?id=30761 Hi, is there posibility introduce in class helper method with same name like in base class ? For example: TSQLQueryHelper = class helper for TSQLQuery public procedure ExecSQL(const ASQL: string; const Args: array of const); overload;

[fpc-pascal] importtl tool

2016-10-20 Thread LacaK
Hi, I have noticed, that tool for importing type library into pas incorrectly imports interface methods, which should have "var" parameter. For example in my case imported: function ScGetStringValue(Type_:Integer;Value:WideString):Integer;dispid 33; but it should be: function