00001 00003 #if !defined(__MOUSEMESSAGE_H__INCLUDED_) 00004 #define __MOUSEMESSAGE_H__INCLUDED_ 00005 00006 #if _MSC_VER > 1000 00007 #pragma once 00008 #endif // _MSC_VER > 1000 00009 00014 typedef struct mouseMessage { 00015 int x; 00016 int y; 00017 int button; 00018 } mouseMessage; 00019 00020 #endif