vote up 0 vote down star

I want to expose some functionality of a internal object as a DLL - but that functionality uses variants. But I need to know: I can export a function with Variant parameters and/or return - or is better to go to an string-only representation?

What is better, from language-agnostic POV (the consumer is not made with Delphi - but all will run in Windows)?

flag
There's a delphi 2010? I thought delphi ended around VB6 – Chris Marisic Nov 3 at 13:34
2  
Apparently you don't think too well then. :-) Delphi is still alive and well - 2010 was released a few months ago, and there are at least two more releases now being developed (one 64-bit, one cross-platform). You should keep up on the current news better. – Ken White Nov 3 at 13:36
2  
Delphi is alive and kicking, Chris ;-) – Fabricio Araujo Nov 3 at 14:16
2  
Actually VB6 was the only thing that died Chris. – Jim McKeeth Nov 3 at 16:17
I apologize for leaving the question open so much time, but I haven't time to try the ideas of you in the weekend. I hope I'll try it today night. – Fabricio Araujo Nov 9 at 12:16

2 Answers

vote up 4 vote down

You could use OleVariant, which is the variant value type that is used by COM. Make sure not to return it as a function result as stdcall and complex result types can easily lead to problems.

A simple example library DelphiLib;

uses
  SysUtils,
  DateUtils,
  Variants;

procedure GetVariant(aValueKind : Integer; out aValue : OleVariant); stdcall; export;
var
  doubleValue : Double;
begin
  case aValueKind of
    1: aValue := 12345;
    2:
    begin
      doubleValue := 13984.2222222222;
      aValue := doubleValue;
    end;
    3: aValue := EncodeDateTime(2009, 11, 3, 15, 30, 21, 40);
    4: aValue := WideString('Hello');
  else
    aValue := Null();
  end;
end;

exports
  GetVariant;


How it could be consumed from C#:

public enum ValueKind : int
{
   Null = 0,
   Int32 = 1,
   Double = 2,
   DateTime = 3,
   String = 4
}

[DllImport("YourDelphiLib",
           EntryPoint = "GetVariant")]
static extern void GetDelphiVariant(ValueKind valueKind, out Object value);

static void Main()
{
   Object delphiInt, delphiDouble, delphiDate, delphiString;

   GetDelphiVariant(ValueKind.Int32, out delphiInt);
   GetDelphiVariant(ValueKind.Double, out delphiDouble);
   GetDelphiVariant(ValueKind.DateTime, out delphiDate);
   GetDelphiVariant(ValueKind.String, out delphiString);
}
link|flag
1  
+1. Basically, sticking to the data types and conventions one sees in type library import units seems like a good idea. – mghie Nov 3 at 14:38
Hmmm... Nice. I'll give it a try tonight. – Fabricio Araujo Nov 3 at 14:55
vote up 0 vote down

As far as I know there is no problems to work with Variant variable type in other languages. But it will be great if you export the same functions for different variable types.

link|flag
As far as I know there are refcounted types in there, allocated via the Delphi heapmanager. The Olevariant way might avoid this. – Marco van de Voort Nov 3 at 16:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.