Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
bf64d3a7
Commit
bf64d3a7
authored
Aug 03, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgrade
parent
cb386ccd
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
219 additions
and
114 deletions
+219
-114
Log.h
Log.h
+6
-3
VsVer.h
VsVer.h
+3
-3
ping.h
net/ping.h
+8
-5
win32.h
win32.h
+21
-103
file_op
win32/file_op
+90
-0
file_op.h
win32/file_op.h
+90
-0
path_op.h
win32/path_op.h
+1
-0
No files found.
Log.h
View file @
bf64d3a7
...
@@ -55,6 +55,7 @@ private:
...
@@ -55,6 +55,7 @@ private:
std
::
string
log_file_foler_
=
""
;
std
::
string
log_file_foler_
=
""
;
std
::
string
log_file_path_
=
""
;
std
::
string
log_file_path_
=
""
;
std
::
string
line_prefix_
=
""
;
std
::
string
line_prefix_
=
""
;
std
::
string
log_file_prefix_
=
""
;
std
::
mutex
lock_
;
std
::
mutex
lock_
;
//static log* instance_;
//static log* instance_;
...
@@ -66,11 +67,13 @@ public:
...
@@ -66,11 +67,13 @@ public:
void
set_output_to_console
(
bool
b
=
true
)
{
log_to_console_
=
b
;
}
void
set_output_to_console
(
bool
b
=
true
)
{
log_to_console_
=
b
;
}
// 3 functions below must be called by sequence
void
set_log_file_foler
(
const
std
::
string
&
folder_path
)
{
log_file_foler_
=
folder_path
.
empty
()
?
""
:
folder_path
+
"
\\
"
;
}
void
set_log_file_foler
(
const
std
::
string
&
folder_path
)
{
log_file_foler_
=
folder_path
.
empty
()
?
""
:
folder_path
+
"
\\
"
;
}
void
set_log_file_prefix
(
const
std
::
string
&
prefix
)
{
log_file_prefix_
=
prefix
;
}
void
set_output_to_file
(
bool
b
=
true
)
{
log_to_file_
=
b
;
if
(
b
)
create_file_name
();
}
void
set_output_to_file
(
bool
b
=
true
)
{
log_to_file_
=
b
;
if
(
b
)
create_file_name
();
}
auto
get_log_file_path
()
const
{
return
log_file_path_
;
}
std
::
string
get_log_file_path
()
const
{
return
log_file_path_
;
}
public
:
public
:
...
@@ -248,7 +251,7 @@ protected:
...
@@ -248,7 +251,7 @@ protected:
auto
s
=
now_to_string
();
auto
s
=
now_to_string
();
std
::
replace
(
s
.
begin
(),
s
.
end
(),
' '
,
'_'
);
std
::
replace
(
s
.
begin
(),
s
.
end
(),
' '
,
'_'
);
std
::
replace
(
s
.
begin
(),
s
.
end
(),
':'
,
'-'
);
std
::
replace
(
s
.
begin
(),
s
.
end
(),
':'
,
'-'
);
log_file_path_
=
log_file_foler_
+
s
+
".log"
;
log_file_path_
=
log_file_foler_
+
log_file_prefix_
+
"."
+
s
+
".log"
;
}
}
std
::
string
format_msg
(
const
std
::
string
&
msg
)
{
std
::
string
format_msg
(
const
std
::
string
&
msg
)
{
...
...
VsVer.h
View file @
bf64d3a7
// VsVer.h
// VsVer.h
#pragma once
#pragma once
/***************************************/
/***************************************/
//
为了代码在vc6和vs2010下都能通过编译,定义以下宏
//
为了代码在vc6和vs2010下都能通过编译,定义以下宏
#if _MSC_VER == 1200 // vc6
的cl版本号
#if _MSC_VER == 1200 // vc6
的cl版本号
#define _ultoa_s _ultoa
#define _ultoa_s _ultoa
#define _itoa_s _itoa
#define _itoa_s _itoa
#define _ltoa_s _ltoa
#define _ltoa_s _ltoa
...
...
net/ping.h
View file @
bf64d3a7
...
@@ -70,7 +70,7 @@ private:
...
@@ -70,7 +70,7 @@ private:
{
{
if
(
num_replies_
==
0
)
{
if
(
num_replies_
==
0
)
{
total_time_
+=
std
::
chrono
::
milliseconds
(
5000
);
total_time_
+=
std
::
chrono
::
milliseconds
(
5000
);
std
::
cout
<<
"Request timed out"
<<
std
::
endl
;
JLOGA
(
"Request timed out"
)
;
}
}
if
(
!
quiting_
)
{
if
(
!
quiting_
)
{
...
@@ -115,15 +115,18 @@ private:
...
@@ -115,15 +115,18 @@ private:
// Print out some information about the reply packet.
// Print out some information about the reply packet.
posix_time
::
ptime
now
=
posix_time
::
microsec_clock
::
universal_time
();
posix_time
::
ptime
now
=
posix_time
::
microsec_clock
::
universal_time
();
auto
ms
=
(
now
-
time_sent_
).
total_milliseconds
();
auto
ms
=
(
now
-
time_sent_
).
total_milliseconds
();
std
::
cout
<<
length
-
ipv4_hdr
.
header_length
()
std
::
stringstream
ss
;
ss
<<
length
-
ipv4_hdr
.
header_length
()
<<
" bytes from "
<<
ipv4_hdr
.
source_address
()
<<
" bytes from "
<<
ipv4_hdr
.
source_address
()
<<
": icmp_seq="
<<
icmp_hdr
.
sequence_number
()
<<
": icmp_seq="
<<
icmp_hdr
.
sequence_number
()
<<
", ttl="
<<
ipv4_hdr
.
time_to_live
()
<<
", ttl="
<<
ipv4_hdr
.
time_to_live
()
<<
", time="
<<
ms
<<
" ms"
<<
", time="
<<
ms
<<
" ms"
;
<<
std
::
endl
;
JLOGA
(
ss
.
str
().
c_str
())
;
total_time_
+=
std
::
chrono
::
milliseconds
(
ms
);
total_time_
+=
std
::
chrono
::
milliseconds
(
ms
);
auto
cnt
=
total_time_
.
count
();
auto
cnt
=
total_time_
.
count
();
std
::
cout
<<
"total_time_ "
<<
cnt
<<
std
::
endl
;
ss
.
str
(
""
);
ss
.
clear
();
ss
<<
"total_time_ "
<<
cnt
;
JLOGA
(
ss
.
str
().
c_str
());
}
}
if
(
max_sequence_number_
!=
0
&&
sequence_number_
<
max_sequence_number_
)
if
(
max_sequence_number_
!=
0
&&
sequence_number_
<
max_sequence_number_
)
...
...
win32.h
View file @
bf64d3a7
...
@@ -9,6 +9,9 @@
...
@@ -9,6 +9,9 @@
#include "utf8.h"
#include "utf8.h"
#include "win32/MyWSAError.h"
#include "win32/MyWSAError.h"
#include "win32/path_op.h"
#include "win32/path_op.h"
#if _WIN32_WINNT > _WIN32_WINNT_WINXP
#include "win32/file_op.h"
#endif
#include "win32/memory_micros.h"
#include "win32/memory_micros.h"
namespace
utf8
{
namespace
utf8
{
...
@@ -80,7 +83,11 @@ inline DWORD daemon(const std::wstring& path, bool wait_app_exit = true, bool sh
...
@@ -80,7 +83,11 @@ inline DWORD daemon(const std::wstring& path, bool wait_app_exit = true, bool sh
CloseHandle
(
pi
.
hProcess
);
CloseHandle
(
pi
.
hProcess
);
return
dwExit
;
return
dwExit
;
}
}
return
-
1
;
return
0xFFFFFFFF
;
}
inline
DWORD
daemon
(
const
std
::
string
&
path
,
bool
wait_app_exit
=
true
,
bool
show
=
true
)
{
return
daemon
(
utf8
::
a2w
(
path
),
wait_app_exit
,
show
);
}
}
inline
BOOL
Win32CenterWindow
(
HWND
hwndWindow
)
inline
BOOL
Win32CenterWindow
(
HWND
hwndWindow
)
...
@@ -120,95 +127,6 @@ inline BOOL Win32CenterWindow(HWND hwndWindow)
...
@@ -120,95 +127,6 @@ inline BOOL Win32CenterWindow(HWND hwndWindow)
return
FALSE
;
return
FALSE
;
}
}
inline
bool
get_file_open_dialog_result
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
bool
ok
=
false
;
HRESULT
hr
=
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
|
COINIT_DISABLE_OLE1DDE
);
if
(
SUCCEEDED
(
hr
))
{
IFileOpenDialog
*
pFileOpen
;
// Create the FileOpenDialog object.
hr
=
CoCreateInstance
(
CLSID_FileOpenDialog
,
NULL
,
CLSCTX_ALL
,
IID_IFileOpenDialog
,
reinterpret_cast
<
void
**>
(
&
pFileOpen
));
if
(
SUCCEEDED
(
hr
))
{
// Show the Open dialog box.
hr
=
pFileOpen
->
Show
(
hWnd
);
// Get the file name from the dialog box.
if
(
SUCCEEDED
(
hr
))
{
IShellItem
*
pItem
;
hr
=
pFileOpen
->
GetResult
(
&
pItem
);
if
(
SUCCEEDED
(
hr
))
{
PWSTR
pszFilePath
;
hr
=
pItem
->
GetDisplayName
(
SIGDN_FILESYSPATH
,
&
pszFilePath
);
// Display the file name to the user.
if
(
SUCCEEDED
(
hr
))
{
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path
=
pszFilePath
;
ok
=
true
;
CoTaskMemFree
(
pszFilePath
);
}
pItem
->
Release
();
}
}
pFileOpen
->
Release
();
}
CoUninitialize
();
}
return
ok
;
}
inline
bool
get_save_as_dialog_path
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
bool
ok
=
false
;
HRESULT
hr
=
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
|
COINIT_DISABLE_OLE1DDE
);
if
(
SUCCEEDED
(
hr
))
{
IFileSaveDialog
*
pFileSave
;
// Create the FileOpenDialog object.
hr
=
CoCreateInstance
(
CLSID_FileSaveDialog
,
NULL
,
CLSCTX_ALL
,
IID_IFileSaveDialog
,
reinterpret_cast
<
void
**>
(
&
pFileSave
));
if
(
SUCCEEDED
(
hr
))
{
// Show the Open dialog box.
hr
=
pFileSave
->
Show
(
hWnd
);
// Get the file name from the dialog box.
if
(
SUCCEEDED
(
hr
))
{
IShellItem
*
pItem
;
hr
=
pFileSave
->
GetResult
(
&
pItem
);
if
(
SUCCEEDED
(
hr
))
{
PWSTR
pszFilePath
;
hr
=
pItem
->
GetDisplayName
(
SIGDN_FILESYSPATH
,
&
pszFilePath
);
// Display the file name to the user.
if
(
SUCCEEDED
(
hr
))
{
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path
=
pszFilePath
;
ok
=
true
;
CoTaskMemFree
(
pszFilePath
);
}
pItem
->
Release
();
}
}
pFileSave
->
Release
();
}
CoUninitialize
();
}
return
ok
;
}
class
auto_timer
:
public
boost
::
noncopyable
class
auto_timer
:
public
boost
::
noncopyable
{
{
private
:
private
:
...
@@ -232,22 +150,22 @@ public:
...
@@ -232,22 +150,22 @@ public:
namespace
rc_detail
{
namespace
rc_detail
{
inline
auto
Width
(
LPCRECT
rc
)
{
inline
long
Width
(
::
LPCRECT
rc
)
{
return
rc
->
right
-
rc
->
left
;
return
rc
->
right
-
rc
->
left
;
}
}
inline
auto
Height
(
LPCRECT
rc
)
{
inline
long
Height
(
::
LPCRECT
rc
)
{
return
rc
->
bottom
-
rc
->
top
;
return
rc
->
bottom
-
rc
->
top
;
}
}
inline
void
DeflateRect
(
LPRECT
rc
,
int
l
,
int
t
,
int
r
,
int
b
)
{
inline
void
DeflateRect
(
::
LPRECT
rc
,
int
l
,
int
t
,
int
r
,
int
b
)
{
rc
->
left
+=
l
;
rc
->
left
+=
l
;
rc
->
top
+=
t
;
rc
->
top
+=
t
;
rc
->
right
-=
r
;
rc
->
right
-=
r
;
rc
->
bottom
-=
b
;
rc
->
bottom
-=
b
;
}
}
inline
void
InflateRect
(
LPRECT
rc
,
int
l
,
int
t
,
int
r
,
int
b
)
{
inline
void
InflateRect
(
::
LPRECT
rc
,
int
l
,
int
t
,
int
r
,
int
b
)
{
rc
->
left
-=
l
;
rc
->
left
-=
l
;
rc
->
top
-=
t
;
rc
->
top
-=
t
;
rc
->
right
+=
r
;
rc
->
right
+=
r
;
...
@@ -257,10 +175,10 @@ inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
...
@@ -257,10 +175,10 @@ inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
}
}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
inline
std
::
vector
<
RECT
>
split_rect
(
LPCRECT
rc
,
int
n
,
int
gap
=
50
)
{
inline
std
::
vector
<
::
RECT
>
split_rect
(
::
LPCRECT
rc
,
int
n
,
int
gap
=
50
)
{
using
namespace
rc_detail
;
using
namespace
rc_detail
;
std
::
vector
<
RECT
>
v
;
std
::
vector
<
::
RECT
>
v
;
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
v
.
push_back
(
*
rc
);
v
.
push_back
(
*
rc
);
}
}
...
@@ -283,9 +201,9 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
...
@@ -283,9 +201,9 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
};
};
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
inline
std
::
vector
<
RECT
>
split_rect_horizontal
(
LPCRECT
rc
,
int
n
,
int
wgap
=
50
,
int
hgap
=
-
1
)
{
inline
std
::
vector
<
::
RECT
>
split_rect_horizontal
(
::
LPCRECT
rc
,
int
n
,
int
wgap
=
50
,
int
hgap
=
-
1
)
{
using
namespace
rc_detail
;
using
namespace
rc_detail
;
std
::
vector
<
RECT
>
v
;
std
::
vector
<
::
RECT
>
v
;
int
w
=
(
Width
(
rc
)
-
(
n
+
1
)
*
wgap
)
/
n
;
int
w
=
(
Width
(
rc
)
-
(
n
+
1
)
*
wgap
)
/
n
;
...
@@ -296,7 +214,7 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
...
@@ -296,7 +214,7 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
}
}
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
RECT
r
=
*
rc
;
::
RECT
r
=
*
rc
;
r
.
left
+=
i
*
w
+
(
i
+
1
)
*
wgap
;
r
.
left
+=
i
*
w
+
(
i
+
1
)
*
wgap
;
r
.
right
=
r
.
left
+
w
;
r
.
right
=
r
.
left
+
w
;
r
.
top
=
rc
->
top
+
hgap
;
r
.
top
=
rc
->
top
+
hgap
;
...
@@ -308,22 +226,22 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
...
@@ -308,22 +226,22 @@ inline std::vector<RECT> split_rect_horizontal(LPCRECT rc, int n, int wgap = 50,
}
}
// rc's width / spliter = (rc's width - hexagon's side length) / 2
// rc's width / spliter = (rc's width - hexagon's side length) / 2
inline
std
::
vector
<
POINT
>
get_hexagon_vertexes_from_rect
(
LPCRECT
rc
,
float
spliter
=
3
.
0
)
{
inline
std
::
vector
<
::
POINT
>
get_hexagon_vertexes_from_rect
(
::
LPCRECT
rc
,
float
spliter
=
3
.
0
)
{
if
(
!
rc
)
{
if
(
!
rc
)
{
return
std
::
vector
<
POINT
>
();
return
std
::
vector
<
::
POINT
>
();
}
}
if
(
spliter
==
0
.
0
)
{
if
(
spliter
==
0
.
0
)
{
spliter
=
3
.
0
;
spliter
=
3
.
0
;
}
}
std
::
vector
<
POINT
>
v
;
std
::
vector
<
::
POINT
>
v
;
auto
w
=
rc
->
right
-
rc
->
left
;
auto
w
=
rc
->
right
-
rc
->
left
;
auto
h
=
rc
->
bottom
-
rc
->
top
;
auto
h
=
rc
->
bottom
-
rc
->
top
;
auto
ww
=
static_cast
<
int
>
(
w
/
spliter
);
auto
ww
=
static_cast
<
int
>
(
w
/
spliter
);
auto
hh
=
static_cast
<
int
>
(
h
/
spliter
);
auto
hh
=
static_cast
<
int
>
(
h
/
spliter
);
POINT
pt
;
::
POINT
pt
;
pt
.
x
=
rc
->
left
;
pt
.
x
=
rc
->
left
;
pt
.
y
=
rc
->
top
+
hh
;
pt
.
y
=
rc
->
top
+
hh
;
v
.
push_back
(
pt
);
v
.
push_back
(
pt
);
...
...
win32/file_op
0 → 100644
View file @
bf64d3a7
#pragma once
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileOpenDialog *pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL,
IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileOpen->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileOpen->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileOpen->Release();
}
CoUninitialize();
}
return ok;
}
inline bool get_save_as_dialog_path(std::wstring& path, HWND hWnd = nullptr) {
bool ok = false;
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED |
COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED(hr)) {
IFileSaveDialog *pFileSave;
// Create the FileOpenDialog object.
hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_ALL,
IID_IFileSaveDialog, reinterpret_cast<void**>(&pFileSave));
if (SUCCEEDED(hr)) {
// Show the Open dialog box.
hr = pFileSave->Show(hWnd);
// Get the file name from the dialog box.
if (SUCCEEDED(hr)) {
IShellItem *pItem;
hr = pFileSave->GetResult(&pItem);
if (SUCCEEDED(hr)) {
PWSTR pszFilePath;
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED(hr)) {
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path = pszFilePath;
ok = true;
CoTaskMemFree(pszFilePath);
}
pItem->Release();
}
}
pFileSave->Release();
}
CoUninitialize();
}
return ok;
}
win32/file_op.h
0 → 100644
View file @
bf64d3a7
#pragma once
inline
bool
get_file_open_dialog_result
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
bool
ok
=
false
;
HRESULT
hr
=
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
|
COINIT_DISABLE_OLE1DDE
);
if
(
SUCCEEDED
(
hr
))
{
IFileOpenDialog
*
pFileOpen
;
// Create the FileOpenDialog object.
hr
=
CoCreateInstance
(
CLSID_FileOpenDialog
,
NULL
,
CLSCTX_ALL
,
IID_IFileOpenDialog
,
reinterpret_cast
<
void
**>
(
&
pFileOpen
));
if
(
SUCCEEDED
(
hr
))
{
// Show the Open dialog box.
hr
=
pFileOpen
->
Show
(
hWnd
);
// Get the file name from the dialog box.
if
(
SUCCEEDED
(
hr
))
{
IShellItem
*
pItem
;
hr
=
pFileOpen
->
GetResult
(
&
pItem
);
if
(
SUCCEEDED
(
hr
))
{
PWSTR
pszFilePath
;
hr
=
pItem
->
GetDisplayName
(
SIGDN_FILESYSPATH
,
&
pszFilePath
);
// Display the file name to the user.
if
(
SUCCEEDED
(
hr
))
{
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path
=
pszFilePath
;
ok
=
true
;
CoTaskMemFree
(
pszFilePath
);
}
pItem
->
Release
();
}
}
pFileOpen
->
Release
();
}
CoUninitialize
();
}
return
ok
;
}
inline
bool
get_save_as_dialog_path
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
bool
ok
=
false
;
HRESULT
hr
=
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
|
COINIT_DISABLE_OLE1DDE
);
if
(
SUCCEEDED
(
hr
))
{
IFileSaveDialog
*
pFileSave
;
// Create the FileOpenDialog object.
hr
=
CoCreateInstance
(
CLSID_FileSaveDialog
,
NULL
,
CLSCTX_ALL
,
IID_IFileSaveDialog
,
reinterpret_cast
<
void
**>
(
&
pFileSave
));
if
(
SUCCEEDED
(
hr
))
{
// Show the Open dialog box.
hr
=
pFileSave
->
Show
(
hWnd
);
// Get the file name from the dialog box.
if
(
SUCCEEDED
(
hr
))
{
IShellItem
*
pItem
;
hr
=
pFileSave
->
GetResult
(
&
pItem
);
if
(
SUCCEEDED
(
hr
))
{
PWSTR
pszFilePath
;
hr
=
pItem
->
GetDisplayName
(
SIGDN_FILESYSPATH
,
&
pszFilePath
);
// Display the file name to the user.
if
(
SUCCEEDED
(
hr
))
{
//MessageBox(hWnd, pszFilePath, L"File Path", MB_OK);
path
=
pszFilePath
;
ok
=
true
;
CoTaskMemFree
(
pszFilePath
);
}
pItem
->
Release
();
}
}
pFileSave
->
Release
();
}
CoUninitialize
();
}
return
ok
;
}
win32/path_op.h
View file @
bf64d3a7
...
@@ -18,5 +18,6 @@ inline std::string get_exe_path_a()
...
@@ -18,5 +18,6 @@ inline std::string get_exe_path_a()
return
std
::
string
(
path
).
substr
(
0
,
pos
);
return
std
::
string
(
path
).
substr
(
0
,
pos
);
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment