#ifndef UETYPES_H #define UETYPES_H typedef struct _ue_clipboard_struct ue_clipboard_struct; #define UE_CLIPBOARD(p) ((ue_clipboard_struct *)(p)) typedef struct _ue_keymap_struct keymap_struct; #define UE_KEYMAP(p) ((keymap_struct *)(p)) /* Dialogs & Windows */ typedef struct _about_dlg_struct about_dlg_struct; #define ABOUT_DLG(p) ((about_dlg_struct *)(p)) typedef struct _ecow_struct ecow_struct; #define ECOW(p) ((ecow_struct *)(p)) typedef struct _optwin_struct optwin_struct; #define OPTWIN(p) ((optwin_struct *)(p)) typedef struct _print_dlg_struct print_dlg_struct; #define PRINT_DLG(p) ((print_dlg_struct *)(p)) typedef struct _prop_dlg_struct prop_dlg_struct; #define PROP_DLG(p) ((prop_dlg_struct *)(p)) typedef struct _uew_struct uew_struct; #define UEW(p) ((uew_struct *)(p)) typedef struct _uhw_struct uhw_struct; #define UHW(p) ((uhw_struct *)(p)) typedef struct _wepw_struct wepw_struct; #define WEPW(p) ((wepw_struct *)(p)) #endif /* UETYPES_H */