home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 217 / DPCS0306DVD.ISO / Toolkit / Internet / FileZilla / Server / FileZilla_Server-0.9.11.exe / source / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-06-06  |  1.4 KB  |  32 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19.  
  20.  
  21.  
  22. /* Check if the Platform SDK is installed. Especially in VC6 some components like
  23.  * the theme api and debugging tools api aren't installed by default, The Platform SDK
  24.  * includes the required headers.
  25.  * Unfortunately there is no safe way to tell whether the platform SDK is installed.
  26.  * One way to guess it is over the INVALID_SET_FILE_POINTER define, it at least is not 
  27.  * defined in the header files of VC6, but it is defined in the Platform SDK.
  28.  */
  29. #ifndef INVALID_SET_FILE_POINTER
  30. #error Please download and install the latest MS Platform SDK from http://www.microsoft.com/msdownload/platformsdk/sdkupdate/
  31. #endif
  32.