2 |
|
// |
3 |
|
// Douglas Thrift |
4 |
|
// |
5 |
< |
// $Id: VTBFileUtil2.h,v 1.4 2003/08/16 08:40:55 douglas Exp $ |
5 |
> |
// $Id: VTBFileUtil2.h,v 1.6 2003/08/17 00:43:49 douglas Exp $ |
6 |
|
|
7 |
|
#ifndef _VTBFileUtil_h_ |
8 |
|
#define _VTBFileUtil_h_ |
20 |
|
|
21 |
|
#include <windows.h> |
22 |
|
#include <commctrl.h> |
23 |
+ |
#include <objbase.h> |
24 |
+ |
#include <shlobj.h> |
25 |
+ |
|
26 |
+ |
#include "resource.h" |
27 |
|
|
28 |
|
using namespace std; |
29 |
|
|
30 |
+ |
enum Mode { none, disc, scan }; |
31 |
+ |
struct Gui |
32 |
+ |
{ |
33 |
+ |
HINSTANCE instance; |
34 |
+ |
HICON icon; |
35 |
+ |
UINT_PTR tips; |
36 |
+ |
}; |
37 |
+ |
|
38 |
|
extern bool debug; |
39 |
|
extern string program; |
40 |
|
extern string programName; |
41 |
|
extern string programVersion; |
42 |
< |
|
31 |
< |
enum Mode { none, disc, scan }; |
42 |
> |
extern Gui gui; |
43 |
|
|
44 |
|
void usage(HWND parent = NULL); |
45 |
|
void version(HWND parent = NULL); |
46 |
< |
void choice(Mode& mode, HWND parent = NULL); |
46 |
> |
inline string toAnsi(const wstring& wide) |
47 |
> |
{ |
48 |
> |
LPSTR buffer = new CHAR[wide.length() + 1]; |
49 |
> |
|
50 |
> |
WideCharToMultiByte(CP_ACP, 0, wide.c_str(), wide.length() + 1, buffer, |
51 |
> |
wide.length() + 1, NULL, NULL); |
52 |
> |
|
53 |
> |
return buffer; |
54 |
> |
} |
55 |
> |
inline wstring toWide(const string& ansi) |
56 |
> |
{ |
57 |
> |
LPWSTR buffer = new WCHAR[ansi.length() + 1]; |
58 |
> |
|
59 |
> |
MultiByteToWideChar(CP_ACP, 0, ansi.c_str(), ansi.length() + 1, buffer, |
60 |
> |
ansi.length() + 1); |
61 |
> |
|
62 |
> |
return buffer; |
63 |
> |
} |
64 |
|
inline void center(HWND window) |
65 |
|
{ |
66 |
|
RECT rect, dialog, desktop; |