Hallo
kennt jemand einen Ersatz für diese C-Klasse:
Code:
class CPicture : public COleDispatchDriver
{
public:CPicture() {} // Calls COleDispatchDriver default constructor
CPicture(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CPicture(const CPicture& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// Attributes
public:
long GetHandle();
long GetHPal();
void SetHPal(long);
short GetType();
long GetWidth();
long GetHeight();
// Operations
public:
// method 'Render' not emitted because of invalid return type or parameter type
};
Der
COleDispatchDriver ist in afxdisp.h deklariert.
Benötigt wird das ganze für eine Delphiumsetzung von einem
"Ouside In" Beispiel.
Viele Grüße
Alter Mann
[edit=mkinzler]Code-Tag durch c-Tag ersetzt Mfg, mkinzler[/edit]