TimTaylor wrote:Jupp ich bin auch neu.
Und finde das Projekt ist ne prima Sache hoffe es klapt alles so wie ihr euch das denkt.

.
Das Einloggen ist ja ein ...... .
Den auf TCPA was windows plant habe ich kein bock

.
Hallo Tim Taylor,
herzlich willkommen im Club

jo und mit dem Einloggen be happy don't worry.

TCPA

Jo Gleichfalls
Viele Grüsse der RudBoy
ps: abba Ada schafft mich nicht
//
// Etwas Beispielcode in Ada
// Also wen es interesiert
//
---- Begin package simple_cpp_interface.adb ----
---- Autor RudBoy ----
package body Simple_Cpp_Interface is
procedure Ada_Method2 (This : in out A; V : Integer) is
begin
Method1 (This);
This.A_Value := V;
end Ada_Method2;
end Simple_Cpp_Interface;
---- End package simple_cpp_interface.adb ----
---- Begin package simple_cpp_interface.ads ----
---- Autor RudBoy ----
package Simple_Cpp_Interface is
type A is limited
record
O_Value : Integer;
A_Value : Integer;
end record;
pragma Convention (C, A);
procedure Method1 (This : in out A);
pragma Import (C, Method1);
procedure Ada_Method2 (This : in out A; V : Integer);
pragma Export (C, Ada_Method2);
end Simple_Cpp_Interface;
---- End package simple_cpp_interface.ads ----