boost_has_ftime.ipp 607 B

1234567891011121314151617181920212223242526272829303132
  1. // (C) Copyright John Maddock 2001.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for most recent version.
  6. // MACRO: BOOST_HAS_FTIME
  7. // TITLE: The platform has FTIME.
  8. // DESCRIPTION: The platform supports the Win32 API type FTIME.
  9. #include <windows.h>
  10. namespace boost_has_ftime{
  11. void f(FILETIME)
  12. {
  13. // this is never called, it just has to compile:
  14. }
  15. int test()
  16. {
  17. return 0;
  18. }
  19. }