platform_periodical_data.hpp
Go to the documentation of this file.
00001 /* 00002 Copyright 2005-2007 Adobe Systems Incorporated 00003 Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt 00004 or a copy at http://stlab.adobe.com/licenses.html) 00005 */ 00006 00007 /****************************************************************************************************/ 00008 00009 #ifndef ADOBE_PERIODICAL_IMPL_HPP 00010 #define ADOBE_PERIODICAL_IMPL_HPP 00011 00012 /****************************************************************************************************/ 00013 00014 #define WINDOWS_LEAN_AND_MEAN 1 00015 00016 #include <windows.h> 00017 00018 #include <boost/function.hpp> 00019 00020 /****************************************************************************************************/ 00021 00022 namespace adobe { 00023 00024 /****************************************************************************************************/ 00025 00026 struct periodical_platform_data_t 00027 { 00028 typedef boost::function<void ()> fire_proc_t; 00029 00030 periodical_platform_data_t(const fire_proc_t& fire_proc, std::size_t millisecond_delay); 00031 00032 ~periodical_platform_data_t(); 00033 00034 UINT_PTR timer_ref_m; 00035 fire_proc_t fire_m; 00036 }; 00037 00038 /****************************************************************************************************/ 00039 00040 } // namespace adobe 00041 00042 /****************************************************************************************************/ 00043 00044 // ADOBE_PERIODICAL_IMPL_HPP 00045 #endif 00046 00047 /****************************************************************************************************/ |