Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
'method': an event handler method must return the same type as the source 'method'
Remarks
You defined an event handler method that did not return the same type as the source event method. To fix this error, give the event handler method the same return type as that of the source event method.
Example
The following example generates C3712:
// C3712.cpp
// compile with: /c
[event_source(native)]
class CEventSrc {
public:
__event void event1();
};
[event_receiver(native)]
class CEventRec {
public:
int handler1() { return 0; }
// try the following line instead
// void handler1() {}
void HookEvents(CEventSrc* pSrc) {
__hook(&CEventSrc::event1, pSrc, &CEventRec::handler1); // C3712
}
void UnhookEvents(CEventSrc* pSrc) {
__unhook(&CEventSrc::event1, pSrc, &CEventRec::handler1); // C3712
}
};