#ifndef INPUT_H #define INPUT_H #include typedef struct { char title[256]; char data[512]; int width; } INPUT_DATA; char* GetInput(HWND hParent, char *title, char *dflt, int width); #endif .