Changeset 4128

Show
Ignore:
Timestamp:
07/28/06 18:18:51 (2 years ago)
Author:
fujii
Message:

* mw32clpbd.c (init_mw32clpbd): Test GetClipboardSequenceNumber?
API only if GetProcAddress? succeeds.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4127 r4128  
     12006-07-28  Masayuki FUJII  <boochang@m4.kcn.ne.jp> 
     2 
     3        * mw32clpbd.c (init_mw32clpbd): Test GetClipboardSequenceNumber 
     4        API only if GetProcAddress succeeds. 
     5 
    162006-07-28  Masayuki FUJII  <boochang@m4.kcn.ne.jp> 
    27 
     
    1217        clipboard. 
    1318        (init_mw32clpbd): New function. 
    14  
    1519        * emacs.c (main): Call init_mw32clpbd. 
    1620 
  • trunk/src/mw32clpbd.c

    r4127 r4128  
    266266  /* Test GetClipboardSequenceNumber API. If test fails, make it 
    267267     inavailable. */ 
    268   if (!get_clipboard_sequence_number_fn ()) 
     268  if (get_clipboard_sequence_number_fn 
     269      && !get_clipboard_sequence_number_fn ()) 
    269270    get_clipboard_sequence_number_fn = NULL; 
    270271}