| 286 | bool IsGUIThread(); |
| 287 | |
| 288 | class HFile : boost::noncopyable |
| 289 | { |
| 290 | public: |
| 291 | explicit HFile(const std::string& filename); |
| 292 | ~HFile(); |
| 293 | size_t size() const; |
| 294 | void resize(size_t size); |
| 295 | |
| 296 | private: |
| 297 | int m_handle; |
| 298 | }; |
| 299 | |
| 300 | |
| 301 | } // namespace Win32 |
no outgoing calls