source: thirdparty/blosc/internal-complibs/snappy-1.1.1/msvc1.patch @ 8ebc79b

Revision 8ebc79b, 450 bytes checked in by Hal Finkel <hfinkel@…>, 8 years ago (diff)

Add the other internal compression libraries from blocs

  • Property mode set to 100644
  • internal-complibs/snappy-1.1.1/snappy.h

    a b  
    4444 
    4545#include "snappy-stubs-public.h" 
    4646 
     47// Windows does not define ssize_t by default.  This is a workaround. 
     48// Please note that this is only defined in the Blosc sources of Snappy. 
     49#if defined(_WIN32) && !defined(__MINGW32__) 
     50#include <BaseTsd.h> 
     51typedef SSIZE_T ssize_t; 
     52#endif 
     53 
     54 
    4755namespace snappy { 
    4856  class Source; 
    4957  class Sink; 
Note: See TracBrowser for help on using the repository browser.