cygwin.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef CYGWIN_H_INCLUDED
  2. #define CYGWIN_H_INCLUDED
  3. /*********************************************************************
  4. *
  5. * File : $Source: /cvsroot/ijbswa/current/cygwin.h,v $
  6. *
  7. * Purpose : The windows.h file seems to be a *tad* different, so I
  8. * will bridge the gaps here. Perhaps I should convert the
  9. * latest SDK too? Shudder, I think not.
  10. *
  11. * Copyright : Written by and Copyright (C) 2001 members of the
  12. * Privoxy team. https://www.privoxy.org/
  13. *
  14. * Based on the Internet Junkbuster originally written
  15. * by and Copyright (C) 1997 Anonymous Coders and
  16. * Junkbusters Corporation. http://www.junkbusters.com
  17. *
  18. * This program is free software; you can redistribute it
  19. * and/or modify it under the terms of the GNU General
  20. * Public License as published by the Free Software
  21. * Foundation; either version 2 of the License, or (at
  22. * your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will
  25. * be useful, but WITHOUT ANY WARRANTY; without even the
  26. * implied warranty of MERCHANTABILITY or FITNESS FOR A
  27. * PARTICULAR PURPOSE. See the GNU General Public
  28. * License for more details.
  29. *
  30. * The GNU General Public License should be included with
  31. * this file. If not, you can view it at
  32. * http://www.gnu.org/copyleft/gpl.html
  33. * or write to the Free Software Foundation, Inc., 59
  34. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  35. *
  36. *********************************************************************/
  37. /* Conditionally include this whole file. */
  38. #ifdef __MINGW32__
  39. /* Hmmm, seems to be overlooked. */
  40. #define _RICHEDIT_VER 0x0300
  41. /*
  42. * Named slightly different ... but not in Cygwin v1.3.1 ...
  43. *
  44. * #define LVITEM LV_ITEM
  45. * #define LVCOLUMN LV_COLUMN
  46. */
  47. #endif /* def __MINGW32__ */
  48. #endif /* ndef CYGWIN_H_INCLUDED */
  49. /*
  50. Local Variables:
  51. tab-width: 3
  52. end:
  53. */