source: dev/branches/egtra/ab5.0/abdev/abdev-impl/Resource/Load.h@ 791

Last change on this file since 791 was 791, checked in by イグトランス (egtra), 13 years ago

LoadAccelerators代替関数の実装

File size: 646 bytes
RevLine 
[781]1#pragma once
2
[784]3#include <memory>
4#include <windows.h>
[789]5#include <boost/optional.hpp>
[784]6
[781]7namespace ActiveBasic { namespace Resource {
8
[784]9HICON LoadIcon(HINSTANCE hinst, USHORT id, int cxDesired, int cyDesired, UINT load = 0);
[786]10HICON LoadIcon(HINSTANCE hinst, USHORT id);
[781]11
[786]12HCURSOR LoadCursor(HINSTANCE hinst, USHORT id);
13
[789]14boost::optional<std::wstring> LoadString(HINSTANCE hinst, USHORT id);
15
[791]16HACCEL LoadAccelerators(HINSTANCE hinst, USHORT id);
17
[784]18struct IconDeleter
19{
20 typedef HICON pointer;
21
22 void operator ()(HICON hicon) const
23 {
24 ::DestroyIcon(hicon);
25 }
26};
27
28typedef std::unique_ptr<HICON, IconDeleter> UniqueHIcon;
29
[781]30}}
Note: See TracBrowser for help on using the repository browser.