Hallo alle zusammen wie übersetzte ich den das ins Delphi
Code:
class LNIMPEXPCL LNNotesSession : public LNNotesClass
{
friend class LNCalendar;
public:
LNNotesSession();
~LNNotesSession();
static void operator delete( void *object ); //Wie übersetzt man das ?
static void * operator new( size_t size );
LNSTATUS AbbreviateName( const LNString &name, LNString *shortname ) const;
...
Habe mal so weit wie ich s kapieren würde übersetzt!
Delphi-Quellcode:
LNNotesSession class(LNNotesClass)
private
public
procedure AbbreviateName(const name: LNString; shortname: pLNString); //Ist das so richtig ?
constructor Create; //würde ich ~LNNotesSession(); zuordnen
end;
Könnt ihr mir helfen ?
Programmieren ..... .