#ifndef _CBUTTON_H #define _CBUTTON_H #define BUTTON_MAX_TITLE 256 struct ButtonStruct { double m_dXPos; double m_dYPos; double m_dWidth; char m_pcTitle[BUTTON_MAX_TITLE]; int m_iType; }; void ButtonRender(struct ButtonStruct *f_sButton); #endif