mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 04:11:03 -05:00
13 lines
No EOL
287 B
C++
13 lines
No EOL
287 B
C++
#ifndef NULLSOFT_WASABI_MESSAGEPROCESSORI_H
|
|
#define NULLSOFT_WASABI_MESSAGEPROCESSORI_H
|
|
|
|
#include <api/application/ifc_messageprocessor.h>
|
|
|
|
class ifc_messageprocessorI: public ifc_messageprocessor
|
|
{
|
|
public:
|
|
virtual bool ProcessMessage(MSG *msg)=0;
|
|
protected:
|
|
RECVS_DISPATCH;
|
|
};
|
|
#endif |