foobar2000 SDK
2015-08-03
Main Page
Related Pages
Namespaces
Data Structures
Files
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
pfc
format_guid_cpp
Public Member Functions
pfc::format_guid_cpp
#include <
guid.h
>
Inheritance diagram for pfc::format_guid_cpp:
Public Member Functions
format_guid_cpp
(const
GUID
&guid)
Detailed Description
Definition at line
35
of file
guid.h
.
Constructor & Destructor Documentation
pfc::format_guid_cpp::format_guid_cpp
(
const
GUID
&
guid
)
inline
Definition at line
37
of file
guid.h
.
37
{
38
*
this
<<
"{0x"
<<
pfc::format_hex
(guid.
Data1
,8) <<
", 0x"
<<
pfc::format_hex
(guid.
Data2
, 4) <<
", 0x"
<<
pfc::format_hex
(guid.
Data3
,4) <<
", {0x"
<<
pfc::format_hex
(guid.
Data4
[0],2);
39
for
(
int
n = 1; n < 8; ++n) {
40
*
this
<<
", 0x"
<<
pfc::format_hex
(guid.
Data4
[n],2);
41
}
42
*
this
<<
"}}"
;
43
}
GUID::Data4
uint8_t Data4[8]
Definition:
pfc.h:75
GUID::Data3
uint16_t Data3
Definition:
pfc.h:74
pfc::format_hex
Definition:
string_base.h:587
GUID::Data2
uint16_t Data2
Definition:
pfc.h:73
GUID::Data1
uint32_t Data1
Definition:
pfc.h:72
The documentation for this class was generated from the following file:
pfc/
guid.h
Generated by
1.8.11