The R Project SVN R

Rev

Rev 87075 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 87075 Rev 88464
Line 283... Line 283...
283
 
283
 
284
#define MinMenuID  0x0100
284
#define MinMenuID  0x0100
285
#define MinChildID 0x6000
285
#define MinChildID 0x6000
286
#define MinDocID   0xE000
286
#define MinDocID   0xE000
287
 
287
 
-
 
288
PROTECTED LRESULT
-
 
289
sendmessage_unwind(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
-
 
290
 
288
#define sendmessage(a,b,c,d) SendMessage((HWND)(a),(UINT)(b),(WPARAM)c,(LPARAM)d)
291
#define sendmessage(a,b,c,d) sendmessage_unwind((HWND)(a),(UINT)(b),(WPARAM)c,(LPARAM)d)
289
 
292
 
290
/*
293
/*
291
 *  Function prototypes.
294
 *  Function prototypes.
292
 */
295
 */
293
 
296
 
Line 443... Line 446...
443
  extern HANDLE	prev_instance;
446
  extern HANDLE	prev_instance;
444
 
447
 
445
  LRESULT WINAPI app_win_proc (HWND, UINT, WPARAM, LPARAM);
448
  LRESULT WINAPI app_win_proc (HWND, UINT, WPARAM, LPARAM);
446
  LRESULT WINAPI app_doc_proc (HWND, UINT, WPARAM, LPARAM);
449
  LRESULT WINAPI app_doc_proc (HWND, UINT, WPARAM, LPARAM);
447
  LRESULT WINAPI app_work_proc (HWND, UINT, WPARAM, LPARAM);
450
  LRESULT WINAPI app_work_proc (HWND, UINT, WPARAM, LPARAM);
448
  long WINAPI app_control_procedure (HWND, UINT, WPARAM, LPARAM);
451
  LRESULT WINAPI app_control_procedure (HWND, UINT, WPARAM, LPARAM);
449
  UINT WINAPI app_timer_procedure(HWND, UINT, UINT, DWORD);
452
  UINT WINAPI app_timer_procedure(HWND, UINT, UINT, DWORD);
450
  extern WNDPROC app_control_proc;
453
  extern WNDPROC app_control_proc;
451
  long WINAPI edit_control_procedure (HWND, UINT, WPARAM, LPARAM);
454
  LRESULT WINAPI edit_control_procedure (HWND, UINT, WPARAM, LPARAM);
452
  extern WNDPROC edit_control_proc;
455
  extern WNDPROC edit_control_proc;
453
 
456
 
454
  extern int	menus_active;
457
  extern int	menus_active;
455
  extern int	active_windows;
458
  extern int	active_windows;
456
  extern intptr_t child_id;
459
  extern intptr_t child_id;