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
10517a13
Commit
10517a13
authored
Sep 09, 2019
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
8ca7061b
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
209 additions
and
137 deletions
+209
-137
timestamp.h
jlib/base/timestamp.h
+1
-1
space.h
jlib/space.h
+6
-4
DeviceUniqueIdentifier.cpp
jlib/win32/DeviceUniqueIdentifier.cpp
+41
-41
FileOper.h
jlib/win32/mfc/FileOper.h
+2
-2
resolve.h
jlib/win32/resolve.h
+156
-0
test.cpp
test/test/test.cpp
+1
-1
test.vcxproj
test/test/test.vcxproj
+1
-22
test.vcxproj.filters
test/test/test.vcxproj.filters
+0
-65
test.cpp
test/testDeviceUniqueIdentifier/test.cpp
+1
-1
No files found.
jlib/base/timestamp.h
View file @
10517a13
...
...
@@ -43,7 +43,7 @@ public:
:
microSecondsSinceEpoch_
(
microSecondsSinceEpoch
)
{}
static
const
int
MICRO_SECONDS_PER_SECOND
=
1000
*
1000
;
static
const
expr
int
MICRO_SECONDS_PER_SECOND
=
1000
*
1000
;
void
swap
(
Timestamp
&
rhs
)
{
std
::
swap
(
microSecondsSinceEpoch_
,
rhs
.
microSecondsSinceEpoch_
);
...
...
jlib/space.h
View file @
10517a13
...
...
@@ -24,12 +24,14 @@ static std::string human_readable_byte_count(uintmax_t bytes, size_t precision =
auto
unit
=
po
==
PositionalNotation
::
Binary
?
1024
:
1000
;
if
(
bytes
<
unit
)
{
return
std
::
to_string
(
bytes
)
+
"B"
;
}
auto
exp
=
static_cast
<
in
t
>
(
std
::
log
(
bytes
)
/
std
::
log
(
unit
));
auto
exp
=
static_cast
<
size_
t
>
(
std
::
log
(
bytes
)
/
std
::
log
(
unit
));
auto
pre
=
std
::
string
(
"KMGTPEZYBND"
).
at
(
exp
-
1
)
+
std
::
string
(
po
==
PositionalNotation
::
Binary
?
"i"
:
""
);
auto
var
=
bytes
/
std
::
pow
(
unit
,
exp
);
std
::
stringstream
ss
;
ss
<<
std
::
fixed
<<
std
::
setprecision
(
1
)
<<
var
<<
pre
<<
"B"
;
return
ss
.
str
();
//std::stringstream ss;
//ss << std::fixed << std::setprecision(1) << var << pre << "B";
char
buf
[
64
]
=
{
0
};
snprintf
(
buf
,
sizeof
(
buf
),
"%.1lf%sB"
,
var
,
pre
.
data
());
return
buf
;
}
}
jlib/win32/DeviceUniqueIdentifier.cpp
View file @
10517a13
#include "DeviceUniqueIdentifier.h"
#
include
"DeviceUniqueIdentifier.h"
#include <Windows.h>
#include <algorithm>
#include <math.h>
...
...
@@ -20,7 +20,7 @@ namespace DeviceUniqueIdentifier {
namespace
detail
{
struct
DeviceProperty
{
enum
{
PROPERTY_MAX_LEN
=
128
};
//
属性字段最大长度
enum
{
PROPERTY_MAX_LEN
=
128
};
//
属性字段最大长度
wchar_t
szProperty
[
PROPERTY_MAX_LEN
];
};
...
...
@@ -33,35 +33,35 @@ struct WQL_QUERY
inline
WQL_QUERY
getWQLQuery
(
QueryType
queryType
)
{
switch
(
queryType
)
{
case
DeviceUniqueIdentifier
:
:
MAC_ADDR
:
return
//
网卡当前MAC地址
return
//
网卡当前MAC地址
{
L"SELECT * FROM Win32_NetworkAdapter WHERE (MACAddress IS NOT NULL) AND (NOT (PNPDeviceID LIKE 'ROOT%'))"
,
L"MACAddress"
};
case
DeviceUniqueIdentifier
:
:
MAC_ADDR_REAL
:
return
//
网卡原生MAC地址
return
//
网卡原生MAC地址
{
L"SELECT * FROM Win32_NetworkAdapter WHERE (MACAddress IS NOT NULL) AND (NOT (PNPDeviceID LIKE 'ROOT%'))"
,
L"PNPDeviceID"
};
case
DeviceUniqueIdentifier
:
:
HARDDISK_SERIAL
:
return
//
硬盘序列号
return
//
硬盘序列号
{
L"SELECT * FROM Win32_DiskDrive WHERE (SerialNumber IS NOT NULL) AND (MediaType LIKE 'Fixed hard disk%')"
,
L"SerialNumber"
};
case
DeviceUniqueIdentifier
:
:
MOTHERBOARD_UUID
:
return
//
主板序列号
return
//
主板序列号
{
L"SELECT * FROM Win32_BaseBoard WHERE (SerialNumber IS NOT NULL)"
,
L"SerialNumber"
};
case
DeviceUniqueIdentifier
:
:
MOTHERBOARD_MODEL
:
return
//
主板型号
return
//
主板型号
{
L"SELECT * FROM Win32_BaseBoard WHERE (Product IS NOT NULL)"
,
L"Product"
};
case
DeviceUniqueIdentifier
:
:
CPU_ID
:
return
//
处理器I
D
return
//
处理器ID
{
L"SELECT * FROM Win32_Processor WHERE (ProcessorId IS NOT NULL)"
,
L"ProcessorId"
};
case
DeviceUniqueIdentifier
:
:
BIOS_SERIAL
:
return
// BIOS
序列号
return
// BIOS
序列号
{
L"SELECT * FROM Win32_BIOS WHERE (SerialNumber IS NOT NULL)"
,
L"SerialNumber"
};
case
DeviceUniqueIdentifier
:
:
WINDOWS_PRODUCT_ID
:
return
// Windows
产品
ID
return
// Windows
产品I
D
{
L"SELECT * FROM Win32_OperatingSystem WHERE (SerialNumber IS NOT NULL)"
,
L"SerialNumber"
};
default:
...
...
@@ -77,11 +77,11 @@ static BOOL WMI_DoWithHarddiskSerialNumber(wchar_t *SerialNumber, UINT uSize)
iLen
=
wcslen
(
SerialNumber
);
if
(
iLen
==
40
)
// InterfaceType = "IDE"
{
//
需要将16进制编码串转换为字符串
{
//
需要将16进制编码串转换为字符串
wchar_t
ch
,
szBuf
[
32
];
BYTE
b
;
for
(
i
=
0
;
i
<
20
;
i
++
)
{
//
将16进制字符转换为高4位
for
(
i
=
0
;
i
<
20
;
i
++
)
{
//
将16进制字符转换为高4位
ch
=
SerialNumber
[
i
*
2
];
if
((
ch
>=
'0'
)
&&
(
ch
<=
'9'
))
{
b
=
ch
-
'0'
;
...
...
@@ -89,13 +89,13 @@ static BOOL WMI_DoWithHarddiskSerialNumber(wchar_t *SerialNumber, UINT uSize)
b
=
ch
-
'A'
+
10
;
}
else
if
((
ch
>=
'a'
)
&&
(
ch
<=
'f'
))
{
b
=
ch
-
'a'
+
10
;
}
else
{
//
非法字符
}
else
{
//
非法字符
break
;
}
b
<<=
4
;
//
将16进制字符转换为低4位
//
将16进制字符转换为低4位
ch
=
SerialNumber
[
i
*
2
+
1
];
if
((
ch
>=
'0'
)
&&
(
ch
<=
'9'
))
{
b
+=
ch
-
'0'
;
...
...
@@ -103,48 +103,48 @@ static BOOL WMI_DoWithHarddiskSerialNumber(wchar_t *SerialNumber, UINT uSize)
b
+=
ch
-
'A'
+
10
;
}
else
if
((
ch
>=
'a'
)
&&
(
ch
<=
'f'
))
{
b
+=
ch
-
'a'
+
10
;
}
else
{
//
非法字符
}
else
{
//
非法字符
break
;
}
szBuf
[
i
]
=
b
;
}
if
(
i
==
20
)
{
//
转换成功
if
(
i
==
20
)
{
//
转换成功
szBuf
[
i
]
=
L'\0'
;
StringCchCopyW
(
SerialNumber
,
uSize
,
szBuf
);
iLen
=
wcslen
(
SerialNumber
);
}
}
//
每2个字符互换位置
//
每2个字符互换位置
for
(
i
=
0
;
i
<
iLen
;
i
+=
2
)
{
std
::
swap
(
SerialNumber
[
i
],
SerialNumber
[
i
+
1
]);
}
//
去掉空格
//
去掉空格
std
::
remove
(
SerialNumber
,
SerialNumber
+
wcslen
(
SerialNumber
)
+
1
,
L' '
);
return
TRUE
;
}
//
通过“PNPDeviceID”获取网卡原生MAC地址
//
通过“PNPDeviceID”获取网卡原生MAC地址
static
BOOL
WMI_DoWithPNPDeviceID
(
const
wchar_t
*
PNPDeviceID
,
wchar_t
*
MacAddress
,
UINT
uSize
)
{
wchar_t
DevicePath
[
MAX_PATH
];
HANDLE
hDeviceFile
;
BOOL
isOK
=
FALSE
;
//
生成设备路径名
//
生成设备路径名
StringCchCopyW
(
DevicePath
,
MAX_PATH
,
L"
\\\\
.
\\
"
);
StringCchCatW
(
DevicePath
,
MAX_PATH
,
PNPDeviceID
);
// {ad498944-762f-11d0-8dcb-00c04fc3358c} is 'Device Interface Name' for 'Network Card'
StringCchCatW
(
DevicePath
,
MAX_PATH
,
L"#{ad498944-762f-11d0-8dcb-00c04fc3358c}"
);
//
将“PNPDeviceID”中的“/”替换成“#”,以获得真正的设备路径名
//
将“PNPDeviceID”中的“/”替换成“#”,以获得真正的设备路径名
std
::
replace
(
DevicePath
+
4
,
DevicePath
+
4
+
wcslen
(
PNPDeviceID
),
(
int
)
L'\\'
,
(
int
)
L'#'
);
//
获取设备句柄
//
获取设备句柄
hDeviceFile
=
CreateFileW
(
DevicePath
,
0
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
...
...
@@ -158,15 +158,15 @@ static BOOL WMI_DoWithPNPDeviceID(const wchar_t *PNPDeviceID, wchar_t *MacAddres
BYTE
ucData
[
8
];
DWORD
dwByteRet
;
//
获取网卡原生MAC地址
//
获取网卡原生MAC地址
dwID
=
OID_802_3_PERMANENT_ADDRESS
;
isOK
=
DeviceIoControl
(
hDeviceFile
,
IOCTL_NDIS_QUERY_GLOBAL_STATS
,
&
dwID
,
sizeof
(
dwID
),
ucData
,
sizeof
(
ucData
),
&
dwByteRet
,
NULL
);
if
(
isOK
)
{
//
将字节数组转换成16进制字符串
if
(
isOK
)
{
//
将字节数组转换成16进制字符串
for
(
DWORD
i
=
0
;
i
<
dwByteRet
;
i
++
)
{
StringCchPrintfW
(
MacAddress
+
(
i
<<
1
),
uSize
-
(
i
<<
1
),
L"%02X"
,
ucData
[
i
]);
}
MacAddress
[
dwByteRet
<<
1
]
=
L'\0'
;
//
写入字符串结束标记
MacAddress
[
dwByteRet
<<
1
]
=
L'\0'
;
//
写入字符串结束标记
}
CloseHandle
(
hDeviceFile
);
...
...
@@ -180,18 +180,18 @@ static BOOL WMI_DoWithProperty(QueryType queryType, wchar_t *szProperty, UINT uS
{
BOOL
isOK
=
TRUE
;
switch
(
queryType
)
{
case
MAC_ADDR_REAL
:
//
网卡原生MAC地址
case
MAC_ADDR_REAL
:
//
网卡原生MAC地址
isOK
=
WMI_DoWithPNPDeviceID
(
szProperty
,
szProperty
,
uSize
);
break
;
case
HARDDISK_SERIAL
:
//
硬盘序列号
case
HARDDISK_SERIAL
:
//
硬盘序列号
isOK
=
WMI_DoWithHarddiskSerialNumber
(
szProperty
,
uSize
);
break
;
case
MAC_ADDR
:
//
网卡当前MAC地址
//
去掉冒号
case
MAC_ADDR
:
//
网卡当前MAC地址
//
去掉冒号
std
::
remove
(
szProperty
,
szProperty
+
wcslen
(
szProperty
)
+
1
,
L':'
);
break
;
default:
//
去掉空格
//
去掉空格
std
::
remove
(
szProperty
,
szProperty
+
wcslen
(
szProperty
)
+
1
,
L' '
);
}
return
isOK
;
...
...
@@ -291,18 +291,18 @@ bool query(size_t queryTypes, std::vector<std::wstring>& results)
return
ok
;
}
//
基于Windows Management Instrumentation(Windows管理规范)
//
基于Windows Management Instrumentation(Windows管理规范)
bool
query
(
const
std
::
vector
<
QueryType
>&
queryTypes
,
std
::
vector
<
std
::
wstring
>&
results
)
{
bool
ok
=
false
;
//
初始化C
OM
//
初始化CO
M
HRESULT
hres
=
CoInitializeEx
(
NULL
,
COINIT_MULTITHREADED
);
if
(
FAILED
(
hres
))
{
return
false
;
}
//
设置COM的安全认证级别
//
设置COM的安全认证级别
hres
=
CoInitializeSecurity
(
NULL
,
-
1
,
...
...
@@ -319,7 +319,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
return
false
;
}
//
获得WMI连接COM接口
//
获得WMI连接COM接口
IWbemLocator
*
pLoc
=
NULL
;
hres
=
CoCreateInstance
(
CLSID_WbemLocator
,
...
...
@@ -333,7 +333,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
return
false
;
}
//
通过连接接口连接WMI的内核对象名
"ROOT//CIMV2"
//
通过连接接口连接WMI的内核对象名"ROOT//
CIMV2"
IWbemServices
*
pSvc
=
NULL
;
hres
=
pLoc
->
ConnectServer
(
_bstr_t
(
L"ROOT
\\
CIMV2"
),
...
...
@@ -353,7 +353,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
return
false
;
}
//
设置请求代理的安全级别
//
设置请求代理的安全级别
hres
=
CoSetProxyBlanket
(
pSvc
,
RPC_C_AUTHN_WINNT
,
...
...
@@ -374,7 +374,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
for
(
auto
queryType
:
queryTypes
)
{
auto
query
=
detail
::
getWQLQuery
(
queryType
);
//
通过请求代理来向WMI发送请求
//
通过请求代理来向WMI发送请求
IEnumWbemClassObject
*
pEnumerator
=
NULL
;
hres
=
pSvc
->
ExecQuery
(
bstr_t
(
"WQL"
),
...
...
@@ -390,7 +390,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
continue
;
}
//
循环枚举所有的结果对象
//
循环枚举所有的结果对象
while
(
pEnumerator
)
{
IWbemClassObject
*
pclsObj
=
NULL
;
ULONG
uReturn
=
0
;
...
...
@@ -406,7 +406,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
break
;
}
//
获取属性值
//
获取属性值
{
VARIANT
vtProperty
;
VariantInit
(
&
vtProperty
);
...
...
@@ -414,7 +414,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
detail
::
DeviceProperty
deviceProperty
{};
StringCchCopyW
(
deviceProperty
.
szProperty
,
detail
::
DeviceProperty
::
PROPERTY_MAX_LEN
,
vtProperty
.
bstrVal
);
VariantClear
(
&
vtProperty
);
//
对属性值做进一步的处理
//
对属性值做进一步的处理
if
(
detail
::
WMI_DoWithProperty
(
queryType
,
deviceProperty
.
szProperty
,
detail
::
DeviceProperty
::
PROPERTY_MAX_LEN
))
{
results
.
push_back
(
deviceProperty
.
szProperty
);
ok
=
true
;
...
...
@@ -425,7 +425,7 @@ bool query(const std::vector<QueryType>& queryTypes, std::vector<std::wstring>&
pclsObj
->
Release
();
}
// End While
//
释放资源
//
释放资源
pEnumerator
->
Release
();
}
...
...
jlib/win32/mfc/FileOper.h
View file @
10517a13
...
...
@@ -259,7 +259,7 @@ public:
LPCTSTR
szNewName
=
newFileName
.
GetBuffer
(
newFileName
.
GetLength
());
newFileName
.
ReleaseBuffer
();
MoveFile
(
szOldName
,
szNewName
);
TRACE
(
_T
(
"movefile %s to %s
\n
"
),
fileName
,
newFileName
);
TRACE
(
_T
(
"movefile %s to %s
\n
"
),
(
LPCWSTR
)
fileName
,
(
LPCWSTR
)
newFileName
);
return
TRUE
;
}
...
...
@@ -271,7 +271,7 @@ public:
CString
filter
=
_T
(
""
);
filter
.
Format
(
_T
(
"%s
\\
%s"
),
lpszFolder
,
lpszFilter
);
BOOL
bFound
=
find
.
FindFile
(
filter
);
TRACE
(
_T
(
"CFileOper::DeleteFilesInFolder find path %s
\n
"
),
filter
);
TRACE
(
_T
(
"CFileOper::DeleteFilesInFolder find path %s
\n
"
),
(
LPCWSTR
)
filter
);
CString
filepath
=
_T
(
""
);
while
(
bFound
){
bFound
=
find
.
FindNextFile
();
...
...
jlib/win32/resolve.h
0 → 100644
View file @
10517a13
#
pragma
once
#include <Windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <string>
#include "../log2.h"
namespace
jlib
{
//! get first ipv4 of domain
static
std
::
string
resolve
(
const
std
::
string
&
domain
)
{
AUTO_LOG_FUNCTION
;
struct
addrinfo
*
result
=
nullptr
;
struct
addrinfo
*
ptr
=
nullptr
;
struct
addrinfo
hints
;
struct
sockaddr_in
*
sockaddr_ipv4
;
// struct sockaddr_in6 *sockaddr_ipv6;
LPSOCKADDR
sockaddr_ip
;
char
ipstringbuffer
[
46
];
DWORD
ipbufferlength
=
46
;
//--------------------------------
// Setup the hints address info structure
// which is passed to the getaddrinfo() function
ZeroMemory
(
&
hints
,
sizeof
(
hints
));
hints
.
ai_family
=
AF_UNSPEC
;
hints
.
ai_socktype
=
SOCK_STREAM
;
hints
.
ai_protocol
=
IPPROTO_TCP
;
std
::
string
ip
;
do
{
//--------------------------------
// Call getaddrinfo(). If the call succeeds,
// the result variable will hold a linked list
// of addrinfo structures containing response
// information
DWORD
dwRetval
=
getaddrinfo
(
domain
.
c_str
(),
"0"
,
&
hints
,
&
result
);
if
(
dwRetval
!=
0
)
{
JLOG_INFO
(
"getaddrinfo failed with error: {}"
,
dwRetval
);
break
;
}
JLOG_INFO
(
"getaddrinfo returned success"
);
// Retrieve each address and print out the hex bytes
int
i
=
0
;
int
iRetval
=
0
;
bool
ok
=
false
;
for
(
ptr
=
result
;
ptr
!=
nullptr
;
ptr
=
ptr
->
ai_next
)
{
JLOG_INFO
(
"getaddrinfo response {}"
,
i
++
);
JLOG_INFO
(
"
\t
Flags: 0x{:08x}"
,
ptr
->
ai_flags
);
JLOG_INFO
(
"
\t
Family: "
);
switch
(
ptr
->
ai_family
)
{
case
AF_UNSPEC
:
JLOG_INFO
(
"Unspecified"
);
break
;
case
AF_INET
:
JLOG_INFO
(
"AF_INET (IPv4)"
);
sockaddr_ipv4
=
(
struct
sockaddr_in
*
)
ptr
->
ai_addr
;
ip
=
inet_ntoa
(
sockaddr_ipv4
->
sin_addr
);
JLOG_INFO
(
"
\t
IPv4 address {}"
,
ip
);
ok
=
true
;
break
;
case
AF_INET6
:
JLOG_INFO
(
"AF_INET6 (IPv6)"
);
// the InetNtop function is available on Windows Vista and later
// sockaddr_ipv6 = (struct sockaddr_in6 *) ptr->ai_addr;
// printf("\tIPv6 address %s",
// InetNtop(AF_INET6, &sockaddr_ipv6->sin6_addr, ipstringbuffer, 46) );
// We use WSAAddressToString since it is supported on Windows XP and later
sockaddr_ip
=
(
LPSOCKADDR
)
ptr
->
ai_addr
;
// The buffer length is changed by each call to WSAAddresstoString
// So we need to set it for each iteration through the loop for safety
ipbufferlength
=
46
;
iRetval
=
WSAAddressToStringA
(
sockaddr_ip
,
(
DWORD
)
ptr
->
ai_addrlen
,
nullptr
,
ipstringbuffer
,
&
ipbufferlength
);
if
(
iRetval
)
JLOG_INFO
(
"WSAAddressToString failed with {}"
,
WSAGetLastError
());
else
JLOG_INFO
(
"
\t
IPv6 address {}"
,
ipstringbuffer
);
break
;
case
AF_NETBIOS
:
JLOG_INFO
(
"AF_NETBIOS (NetBIOS)"
);
break
;
default
:
JLOG_INFO
(
"Other {}"
,
ptr
->
ai_family
);
break
;
}
JLOG_INFO
(
"
\t
Socket type: "
);
switch
(
ptr
->
ai_socktype
)
{
case
0
:
JLOG_INFO
(
"Unspecified"
);
break
;
case
SOCK_STREAM
:
JLOG_INFO
(
"SOCK_STREAM (stream)"
);
break
;
case
SOCK_DGRAM
:
JLOG_INFO
(
"SOCK_DGRAM (datagram) "
);
break
;
case
SOCK_RAW
:
JLOG_INFO
(
"SOCK_RAW (raw) "
);
break
;
case
SOCK_RDM
:
JLOG_INFO
(
"SOCK_RDM (reliable message datagram)"
);
break
;
case
SOCK_SEQPACKET
:
JLOG_INFO
(
"SOCK_SEQPACKET (pseudo-stream packet)"
);
break
;
default
:
JLOG_INFO
(
"Other {}
\n
"
,
ptr
->
ai_socktype
);
break
;
}
JLOG_INFO
(
"
\t
Protocol: "
);
switch
(
ptr
->
ai_protocol
)
{
case
0
:
JLOG_INFO
(
"Unspecified"
);
break
;
case
IPPROTO_TCP
:
JLOG_INFO
(
"IPPROTO_TCP (TCP)"
);
break
;
case
IPPROTO_UDP
:
JLOG_INFO
(
"IPPROTO_UDP (UDP)"
);
break
;
default
:
JLOG_INFO
(
"Other {}"
,
ptr
->
ai_protocol
);
break
;
}
JLOG_INFO
(
"
\t
Length of this sockaddr: {}"
,
ptr
->
ai_addrlen
);
JLOG_INFO
(
"
\t
Canonical name: {}"
,
ptr
->
ai_canonname
?
ptr
->
ai_canonname
:
"null"
);
if
(
ok
)
{
break
;
}
}
freeaddrinfo
(
result
);
if
(
ok
)
{
return
ip
;
}
}
while
(
false
);
return
""
;
}
}
test/test/test.cpp
View file @
10517a13
// test.cpp : Defines the entry point for the console application.
//
#define _CRT_SECURE_NO_WARNINGS
#include "jlib/chrono_wrapper.h"
#include "jlib/dp.h"
#include "jlib/log2.h"
...
...
@@ -14,7 +15,6 @@
#include "jlib/vs_ver.h"
#include "jlib/win32.h"
#include <jlib/3rdparty/win32/Registry.hpp>
#include <jlib/win32/mfc/FileOper.h>
int
main
()
...
...
test/test/test.vcxproj
View file @
10517a13
...
...
@@ -101,7 +101,7 @@
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<PrecompiledHeader>
Use
</PrecompiledHeader>
<PrecompiledHeader>
NotUsing
</PrecompiledHeader>
<WarningLevel>
Level3
</WarningLevel>
<Optimization>
Disabled
</Optimization>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
...
...
@@ -155,27 +155,6 @@
<ItemGroup>
<ClCompile
Include=
"test.cpp"
/>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\jlib\chrono_wrapper.h"
/>
<ClInclude
Include=
"..\..\jlib\dp.h"
/>
<ClInclude
Include=
"..\..\jlib\log.h"
/>
<ClInclude
Include=
"..\..\jlib\log2.h"
/>
<ClInclude
Include=
"..\..\jlib\mem_tool.h"
/>
<ClInclude
Include=
"..\..\jlib\micro_getter_setter.h"
/>
<ClInclude
Include=
"..\..\jlib\net.h"
/>
<ClInclude
Include=
"..\..\jlib\space.h"
/>
<ClInclude
Include=
"..\..\jlib\utf8.h"
/>
<ClInclude
Include=
"..\..\jlib\version_no.h"
/>
<ClInclude
Include=
"..\..\jlib\win32.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\clipboard.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\DeviceUniqueIdentifierHeaderOnly.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\file_op.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\memory_micros.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\MtVerify.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\MyWSAError.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\path_op.h"
/>
<ClInclude
Include=
"..\..\jlib\win32\UnicodeTool.h"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
...
...
test/test/test.vcxproj.filters
View file @
10517a13
...
...
@@ -13,75 +13,10 @@
<UniqueIdentifier>
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
</UniqueIdentifier>
<Extensions>
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
</Extensions>
</Filter>
<Filter
Include=
"Header Files\JLIB"
>
<UniqueIdentifier>
{b07730c2-1faa-4cf8-bdd5-69236acd73c0}
</UniqueIdentifier>
</Filter>
<Filter
Include=
"Header Files\JLIB\win32"
>
<UniqueIdentifier>
{eb85af39-9206-4efd-9502-a8769c529014}
</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"test.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\jlib\chrono_wrapper.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\dp.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\log.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\log2.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\mem_tool.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\micro_getter_setter.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\net.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\space.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\utf8.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\version_no.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32.h"
>
<Filter>
Header Files\JLIB
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\clipboard.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\file_op.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\memory_micros.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\MtVerify.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\MyWSAError.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\path_op.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\UnicodeTool.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\jlib\win32\DeviceUniqueIdentifierHeaderOnly.h"
>
<Filter>
Header Files\JLIB\win32
</Filter>
</ClInclude>
</ItemGroup>
</Project>
\ No newline at end of file
test/testDeviceUniqueIdentifier/test.cpp
View file @
10517a13
#include <jlib/win32/DeviceUniqueIdentifier.h>
#include <stdio.h>
#include <algorithm>
#include <locale
.h
>
#include <locale>
int
main
()
{
...
...
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