diff options
author | jsorg71 <jsorg71> | 2005-07-02 18:38:04 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-07-02 18:38:04 +0000 |
commit | c2ff24010a345442a9d6f96274a22f454bfa3918 (patch) | |
tree | 918702c3cd0765e92c6ff9a6888526a492616235 /xrdp/xrdp_login_wnd.c | |
parent | 79557c9cc60103021b3bf3e36418587246fa83d3 (diff) | |
download | xrdp-proprietary-c2ff24010a345442a9d6f96274a22f454bfa3918.tar.gz xrdp-proprietary-c2ff24010a345442a9d6f96274a22f454bfa3918.zip |
got __fastcall working for borland compilers
Diffstat (limited to 'xrdp/xrdp_login_wnd.c')
-rw-r--r-- | xrdp/xrdp_login_wnd.c | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/xrdp/xrdp_login_wnd.c b/xrdp/xrdp_login_wnd.c index 51bcf77d..83abfc4f 100644 --- a/xrdp/xrdp_login_wnd.c +++ b/xrdp/xrdp_login_wnd.c @@ -24,7 +24,7 @@ /*****************************************************************************/ /* all login help screen events go here */ -int APP_CC +static int DEFAULT_CC xrdp_wm_login_help_notify(struct xrdp_bitmap* wnd, struct xrdp_bitmap* sender, int msg, long param1, long param2) @@ -78,17 +78,19 @@ logging on."); return 0; } +#if 0 /*****************************************************************************/ -int APP_CC +static int DEFAULT_CC xrdp_wm_popup_notify(struct xrdp_bitmap* wnd, struct xrdp_bitmap* sender, int msg, int param1, int param2) { return 0; } +#endif /*****************************************************************************/ -int +static int APP_CC xrdp_wm_setup_mod(struct xrdp_wm* self, struct xrdp_mod_data* mod_data) { @@ -134,7 +136,7 @@ xrdp_wm_setup_mod(struct xrdp_wm* self, } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_delete_all_childs(struct xrdp_wm* self) { int i; @@ -150,7 +152,7 @@ xrdp_wm_delete_all_childs(struct xrdp_wm* self) } /*****************************************************************************/ -int APP_CC +static int APP_CC set_mod_data_item(struct xrdp_mod_data* mod, char* name, char* value) { int index; @@ -167,7 +169,7 @@ set_mod_data_item(struct xrdp_mod_data* mod, char* name, char* value) } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_help_clicked(struct xrdp_bitmap* wnd) { struct xrdp_bitmap* help; @@ -206,7 +208,7 @@ xrdp_wm_help_clicked(struct xrdp_bitmap* wnd) } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_cancel_clicked(struct xrdp_bitmap* wnd) { if (wnd != 0) @@ -223,7 +225,7 @@ xrdp_wm_cancel_clicked(struct xrdp_bitmap* wnd) } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_ok_clicked(struct xrdp_bitmap* wnd) { struct xrdp_bitmap* combo; @@ -325,7 +327,7 @@ xrdp_wm_ok_clicked(struct xrdp_bitmap* wnd) } /******************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_show_edits(struct xrdp_wm* self, struct xrdp_bitmap* combo) { int count; @@ -403,7 +405,7 @@ xrdp_wm_show_edits(struct xrdp_wm* self, struct xrdp_bitmap* combo) /*****************************************************************************/ /* all login screen events go here */ -int APP_CC +static int DEFAULT_CC xrdp_wm_login_notify(struct xrdp_bitmap* wnd, struct xrdp_bitmap* sender, int msg, long param1, long param2) @@ -458,7 +460,7 @@ xrdp_wm_login_notify(struct xrdp_bitmap* wnd, } /******************************************************************************/ -int APP_CC +static int APP_CC xrdp_wm_login_fill_in_combo(struct xrdp_wm* self, struct xrdp_bitmap* b) { struct list* sections; |