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