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

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

DialogBox, CreateDialogの代替関数を実装

File size: 933 bytes
Line 
1#pragma once
2
3#include <memory>
4#include <windows.h>
5#include <boost/optional.hpp>
6
7namespace ActiveBasic { namespace Resource {
8
9HICON LoadIconAlt(HINSTANCE hinst, USHORT id, int cxDesired, int cyDesired, UINT load = 0);
10HICON LoadIconAlt(HINSTANCE hinst, USHORT id);
11
12HCURSOR LoadCursorAlt(HINSTANCE hinst, USHORT id);
13
14boost::optional<std::wstring> LoadStringAlt(HINSTANCE hinst, USHORT id);
15
16HACCEL LoadAcceleratorsAlt(HINSTANCE hinst, USHORT id);
17
18HMENU LoadMenuAlt(HINSTANCE hinst, USHORT id);
19
20INT_PTR DialogBoxAlt(HINSTANCE hinst, USHORT id, HWND hwndParent, DLGPROC dialogFunc, LPARAM initParam = 0);
21HWND CreateDialogAlt(HINSTANCE hinst, USHORT id, HWND hwndParent, DLGPROC dialogFunc, LPARAM initParam = 0);
22
23struct IconDeleter
24{
25 typedef HICON pointer;
26
27 void operator ()(HICON hicon) const
28 {
29 ::DestroyIcon(hicon);
30 }
31};
32
33typedef std::unique_ptr<HICON, IconDeleter> UniqueHIcon;
34
35}}
Note: See TracBrowser for help on using the repository browser.