diff --git a/_c_o_m_8h_source.html b/_c_o_m_8h_source.html index 3ffabe90..76cefdd5 100644 --- a/_c_o_m_8h_source.html +++ b/_c_o_m_8h_source.html @@ -1249,25 +1249,25 @@ $(function(){ initResizable(false); });
1473 inline VARIANT BuildVBARRAY(_In_ VARTYPE vt, _In_opt_ LPCVOID array, _In_ ULONG columns, _In_ ULONG rows)
1474 {
-
1475 LPSAFEARRAY sa;
-
1476 size_t n;
-
1477 if (columns == 1) {
-
1478 // Make vector when one column only.
-
1479 sa = SafeArrayCreateVector(VT_VARIANT, 0, rows);
-
1480 n = rows;
-
1481 }
-
1482 else {
-
1483 // Make 2-dimensional array when more columns.
-
1484 SAFEARRAYBOUND dim[2] = {
-
1485 { columns, 0 },
-
1486 { rows, 0 }
-
1487 };
-
1488 sa = SafeArrayCreate(VT_VARIANT, 2, dim);
-
1489 n = columns * rows;
-
1490 }
-
1491 if (!sa)
-
1492 throw std::bad_alloc();
-
1493 assert(array || !n);
+
1475 const size_t n = columns * rows;
+
1476 if (!array && n)
+
1477 throw std::invalid_argument("array is NULL");
+
1478
+
1479 LPSAFEARRAY sa;
+
1480 if (columns == 1) {
+
1481 // Make vector when one column only.
+
1482 sa = SafeArrayCreateVector(VT_VARIANT, 0, rows);
+
1483 }
+
1484 else {
+
1485 // Make 2-dimensional array when more columns.
+
1486 SAFEARRAYBOUND dim[2] = {
+
1487 { columns, 0 },
+
1488 { rows, 0 }
+
1489 };
+
1490 sa = SafeArrayCreate(VT_VARIANT, 2, dim);
+
1491 }
+
1492 if (!sa)
+
1493 throw std::bad_alloc();
1494
1495 // Support VARIANT types that may be used for SAFEARRAY
1496 // Source: https://learn.microsoft.com/en-us/windows/win32/api/wtypes/ne-wtypes-varenum#remarks
@@ -1322,150 +1322,151 @@ $(function(){ initResizable(false); });
1558 VARIANT BuildVBARRAY(_In_reads_opt_(rows) const T* array, _In_ ULONG rows)
1559 {
-
1560 assert(array || !rows);
-
1561
-
1562 LPSAFEARRAY sa;
-
1563 if constexpr (columns == 1) {
-
1564 // Make vector when one column only.
-
1565 sa = SafeArrayCreateVector(VT_VARIANT, 0, rows);
-
1566 }
-
1567 else {
-
1568 // Make 2-dimensional array when more columns.
-
1569 SAFEARRAYBOUND dim[2] = {
-
1570 { columns, 0 },
-
1571 { rows, 0 }
-
1572 };
-
1573 sa = SafeArrayCreate(VT_VARIANT, _countof(dim), dim);
-
1574 }
-
1575 if (!sa)
-
1576 throw std::bad_alloc();
-
1577
-
1578 assert(SafeArrayGetElemsize(sa) == sizeof(VARIANT));
-
1579
-
1580 {
- -
1582 VARIANT* dst = ssa.data();
-
1583 for (size_t i = 0; i < rows; ++i) {
-
1584 VARIANT* dst_next = &(*dst << array[i]);
-
1585 assert(dst + columns == dst_next);
-
1586 dst = dst_next;
-
1587 }
-
1588 }
-
1589
-
1590 VARIANT var;
-
1591 V_VT(&var) = VT_ARRAY | VT_VARIANT;
-
1592 V_ARRAY(&var) = sa;
-
1593 return var;
-
1594 }
+
1560 if (!array && rows)
+
1561 throw std::invalid_argument("array is NULL");
+
1562
+
1563 LPSAFEARRAY sa;
+
1564 if constexpr (columns == 1) {
+
1565 // Make vector when one column only.
+
1566 sa = SafeArrayCreateVector(VT_VARIANT, 0, rows);
+
1567 }
+
1568 else {
+
1569 // Make 2-dimensional array when more columns.
+
1570 SAFEARRAYBOUND dim[2] = {
+
1571 { columns, 0 },
+
1572 { rows, 0 }
+
1573 };
+
1574 sa = SafeArrayCreate(VT_VARIANT, _countof(dim), dim);
+
1575 }
+
1576 if (!sa)
+
1577 throw std::bad_alloc();
+
1578
+
1579 assert(SafeArrayGetElemsize(sa) == sizeof(VARIANT));
+
1580
+
1581 {
+ +
1583 VARIANT* dst = ssa.data();
+
1584 for (size_t i = 0; i < rows; ++i) {
+
1585 VARIANT* dst_next = &(*dst << array[i]);
+
1586 assert(dst + columns == dst_next);
+
1587 dst = dst_next;
+
1588 }
+
1589 }
+
1590
+
1591 VARIANT var;
+
1592 V_VT(&var) = VT_ARRAY | VT_VARIANT;
+
1593 V_ARRAY(&var) = sa;
+
1594 return var;
+
1595 }
-
1595
-
-
1604 inline VARIANT BuildVBARRAY(_In_ HDC dc, _In_ HBITMAP pic)
-
1605 {
-
1606 // Get picture parameters.
-
1607 BITMAP bmp;
-
1608 GetObject(pic, sizeof(bmp), reinterpret_cast<LPSTR>(&bmp));
-
1609
-
1610 // Estimate file parameters.
-
1611 BITMAPINFOHEADER bmh = { sizeof(bmh) };
-
1612 GetDIBits(dc, pic, 0, bmp.bmHeight, NULL, reinterpret_cast<LPBITMAPINFO>(&bmh), DIB_RGB_COLORS);
-
1613
-
1614 // Allocate.
-
1615 size_t pallete_size = sizeof(RGBQUAD) * bmh.biClrUsed;
-
1616 LPSAFEARRAY sa = SafeArrayCreateVector(VT_UI1, 0, static_cast<ULONG>(sizeof(BITMAPFILEHEADER) + sizeof(bmh) + pallete_size + bmh.biSizeImage));
-
1617 if (!sa)
-
1618 throw std::bad_alloc();
-
1619
-
1620 // Locate BITMAPFILEHEADER, BITMAPINFO and pixel map.
- -
1622 auto header = reinterpret_cast<LPBITMAPFILEHEADER>(ssa.data());
-
1623 auto info = reinterpret_cast<LPBITMAPINFO>(ssa.data() + sizeof(*header));
-
1624 auto raster = ssa.data() + sizeof(*header) + sizeof(bmh) + pallete_size;
-
1625
-
1626 // Fill in BITMAPFILEHEADER.
-
1627 memset(header, 0, sizeof(*header));
-
1628#pragma warning(push)
-
1629#pragma warning(disable: 6276) // "BM" is not an UTF16 char.
-
1630 header->bfType = *reinterpret_cast<WORD*>("BM");
-
1631#pragma warning(pop)
-
1632 header->bfSize = static_cast<DWORD>(sizeof(*header) + sizeof(bmh) + pallete_size + bmh.biSizeImage);
-
1633 header->bfOffBits = static_cast<DWORD>(sizeof(*header) + sizeof(bmh) + pallete_size);
-
1634
-
1635 // Fill in BITMAPINFO.
-
1636 memcpy(&(info->bmiHeader), &bmh, sizeof(bmh));
-
1637 memset(&(info->bmiColors), 0, pallete_size);
-
1638
-
1639 // Set pallete and pixel map.
-
1640 GetDIBits(dc, pic, 0, bmp.bmHeight, raster, info, DIB_RGB_COLORS);
-
1641
-
1642 VARIANT var;
-
1643 V_VT(&var) = VT_ARRAY | VT_UI1;
-
1644 V_ARRAY(&var) = sa;
-
1645 return var;
-
1646 }
+
1596
+
+
1605 inline VARIANT BuildVBARRAY(_In_ HDC dc, _In_ HBITMAP pic)
+
1606 {
+
1607 // Get picture parameters.
+
1608 BITMAP bmp;
+
1609 GetObject(pic, sizeof(bmp), reinterpret_cast<LPSTR>(&bmp));
+
1610
+
1611 // Estimate file parameters.
+
1612 BITMAPINFOHEADER bmh = { sizeof(bmh) };
+
1613 GetDIBits(dc, pic, 0, bmp.bmHeight, NULL, reinterpret_cast<LPBITMAPINFO>(&bmh), DIB_RGB_COLORS);
+
1614
+
1615 // Allocate.
+
1616 size_t pallete_size = sizeof(RGBQUAD) * bmh.biClrUsed;
+
1617 LPSAFEARRAY sa = SafeArrayCreateVector(VT_UI1, 0, static_cast<ULONG>(sizeof(BITMAPFILEHEADER) + sizeof(bmh) + pallete_size + bmh.biSizeImage));
+
1618 if (!sa)
+
1619 throw std::bad_alloc();
+
1620
+
1621 // Locate BITMAPFILEHEADER, BITMAPINFO and pixel map.
+ +
1623 auto header = reinterpret_cast<LPBITMAPFILEHEADER>(ssa.data());
+
1624 auto info = reinterpret_cast<LPBITMAPINFO>(ssa.data() + sizeof(*header));
+
1625 auto raster = ssa.data() + sizeof(*header) + sizeof(bmh) + pallete_size;
+
1626
+
1627 // Fill in BITMAPFILEHEADER.
+
1628 memset(header, 0, sizeof(*header));
+
1629#pragma warning(push)
+
1630#pragma warning(disable: 6276) // "BM" is not an UTF16 char.
+
1631 header->bfType = *reinterpret_cast<WORD*>("BM");
+
1632#pragma warning(pop)
+
1633 header->bfSize = static_cast<DWORD>(sizeof(*header) + sizeof(bmh) + pallete_size + bmh.biSizeImage);
+
1634 header->bfOffBits = static_cast<DWORD>(sizeof(*header) + sizeof(bmh) + pallete_size);
+
1635
+
1636 // Fill in BITMAPINFO.
+
1637 memcpy(&(info->bmiHeader), &bmh, sizeof(bmh));
+
1638 memset(&(info->bmiColors), 0, pallete_size);
+
1639
+
1640 // Set pallete and pixel map.
+
1641 GetDIBits(dc, pic, 0, bmp.bmHeight, raster, info, DIB_RGB_COLORS);
+
1642
+
1643 VARIANT var;
+
1644 V_VT(&var) = VT_ARRAY | VT_UI1;
+
1645 V_ARRAY(&var) = sa;
+
1646 return var;
+
1647 }
-
1647
-
1658 template <class T>
-
-
1659 void IDispatchInvoke(_In_ T* cp, _In_ DISPID id, _In_opt_ DISPPARAMS* param, _In_ LCID locale = LOCALE_USER_DEFAULT)
-
1660 {
-
1661 assert(cp);
- -
1663 HRESULT hr = cp->EnumConnections(&e);
-
1664 if (FAILED(hr))
-
1665 throw com_runtime_error(hr, "IDispatch::EnumConnections failed");
-
1666
-
1667 CONNECTDATA cd;
-
1668 while (e->Next(1, &cd, NULL) == S_OK) {
-
1669 com_obj<IDispatch> d(cd.pUnk);
-
1670 d->Invoke(id, IID_NULL, locale, DISPATCH_METHOD, param, NULL, NULL, NULL);
-
1671 }
-
1672 }
+
1648
+
1659 template <class T>
+
+
1660 void IDispatchInvoke(_In_ T* cp, _In_ DISPID id, _In_opt_ DISPPARAMS* param, _In_ LCID locale = LOCALE_USER_DEFAULT)
+
1661 {
+
1662 assert(cp);
+ +
1664 HRESULT hr = cp->EnumConnections(&e);
+
1665 if (FAILED(hr))
+
1666 throw com_runtime_error(hr, "IDispatch::EnumConnections failed");
+
1667
+
1668 CONNECTDATA cd;
+
1669 while (e->Next(1, &cd, NULL) == S_OK) {
+
1670 com_obj<IDispatch> d(cd.pUnk);
+
1671 d->Invoke(id, IID_NULL, locale, DISPATCH_METHOD, param, NULL, NULL, NULL);
+
1672 }
+
1673 }
-
1673
-
1684 template <class T>
-
-
1685 T VariantAsInteger(_In_ const VARIANT* var, _In_ T fallback = 0)
-
1686 {
-
1687 assert(var);
-
1688 switch (V_VT(var)) {
-
1689 case VT_UINT_PTR: return static_cast<T>(V_UINT_PTR(var));
-
1690 case VT_INT_PTR: return static_cast<T>(V_INT_PTR(var));
-
1691 case VT_UINT: return static_cast<T>(V_UINT(var));
-
1692 case VT_INT: return static_cast<T>(V_INT(var));
-
1693 case VT_UI4: return static_cast<T>(V_UI4(var));
-
1694 case VT_I4: return static_cast<T>(V_I4(var));
-
1695 case VT_UI2: return static_cast<T>(V_UI2(var));
-
1696 case VT_I2: return static_cast<T>(V_I2(var));
-
1697 case VT_UI1: return static_cast<T>(V_UI1(var));
-
1698 case VT_I1: return static_cast<T>(V_I1(var));
-
1699 }
-
1700 return fallback;
-
1701 }
+
1674
+
1685 template <class T>
+
+
1686 T VariantAsInteger(_In_ const VARIANT* var, _In_ T fallback = 0)
+
1687 {
+
1688 assert(var);
+
1689 switch (V_VT(var)) {
+
1690 case VT_UINT_PTR: return static_cast<T>(V_UINT_PTR(var));
+
1691 case VT_INT_PTR: return static_cast<T>(V_INT_PTR(var));
+
1692 case VT_UINT: return static_cast<T>(V_UINT(var));
+
1693 case VT_INT: return static_cast<T>(V_INT(var));
+
1694 case VT_UI4: return static_cast<T>(V_UI4(var));
+
1695 case VT_I4: return static_cast<T>(V_I4(var));
+
1696 case VT_UI2: return static_cast<T>(V_UI2(var));
+
1697 case VT_I2: return static_cast<T>(V_I2(var));
+
1698 case VT_UI1: return static_cast<T>(V_UI1(var));
+
1699 case VT_I1: return static_cast<T>(V_I1(var));
+
1700 }
+
1701 return fallback;
+
1702 }
-
1702
-
-
1711 inline BOOL VariantAsBoolean(_In_ const VARIANT* var, _In_ BOOL fallback = FALSE)
-
1712 {
-
1713 assert(var);
-
1714 switch (V_VT(var)) {
-
1715 case VT_BOOL: return V_BOOL(var) != VARIANT_FALSE;
-
1716 case VT_UI4: return V_UI4(var) != 0;
-
1717 case VT_I4: return V_I4(var) != 0;
-
1718 case VT_UI2: return V_UI2(var) != 0;
-
1719 case VT_I2: return V_I2(var) != 0;
-
1720 case VT_UI1: return V_UI1(var) != 0;
-
1721 case VT_I1: return V_I1(var) != 0;
-
1722 case VT_UINT: return V_UINT(var) != 0;
-
1723 case VT_INT: return V_INT(var) != 0;
-
1724 case VT_UINT_PTR: return V_UINT_PTR(var) != 0;
-
1725 case VT_INT_PTR: return V_INT_PTR(var) != 0;
-
1726 }
-
1727 return fallback;
-
1728 }
+
1703
+
+
1712 inline BOOL VariantAsBoolean(_In_ const VARIANT* var, _In_ BOOL fallback = FALSE)
+
1713 {
+
1714 assert(var);
+
1715 switch (V_VT(var)) {
+
1716 case VT_BOOL: return V_BOOL(var) != VARIANT_FALSE;
+
1717 case VT_UI4: return V_UI4(var) != 0;
+
1718 case VT_I4: return V_I4(var) != 0;
+
1719 case VT_UI2: return V_UI2(var) != 0;
+
1720 case VT_I2: return V_I2(var) != 0;
+
1721 case VT_UI1: return V_UI1(var) != 0;
+
1722 case VT_I1: return V_I1(var) != 0;
+
1723 case VT_UINT: return V_UINT(var) != 0;
+
1724 case VT_INT: return V_INT(var) != 0;
+
1725 case VT_UINT_PTR: return V_UINT_PTR(var) != 0;
+
1726 case VT_INT_PTR: return V_INT_PTR(var) != 0;
+
1727 }
+
1728 return fallback;
+
1729 }
-
1729
-
1731}
+
1730
+
1732}
BSTR string wrapper.
Definition COM.h:198
bstr(LPCOLESTR src)
Constructs BSTR from OLE string.
Definition COM.h:205
handle_type duplicate_internal(handle_type h) const override
Duplicates the string.
Definition COM.h:277
@@ -1569,10 +1570,10 @@ $(function(){ initResizable(false); });
variant & operator=(unsigned long *pnSrc) noexcept
Copy from unsigned long reference.
Definition COM.h:849
variant & operator=(const VARIANT &varSrc)
Copy from another VARIANT.
Definition COM.h:524
VARIANT & operator<<(VARIANT &v, IDispatch *value)
Saves value to VARIANT.
Definition COM.h:1226
-
void IDispatchInvoke(T *cp, DISPID id, DISPPARAMS *param, LCID locale=LOCALE_USER_DEFAULT)
Calls IDispatch::Invoke.
Definition COM.h:1659
-
T VariantAsInteger(const VARIANT *var, T fallback=0)
Check VARIANT value for integer value.
Definition COM.h:1685
+
void IDispatchInvoke(T *cp, DISPID id, DISPPARAMS *param, LCID locale=LOCALE_USER_DEFAULT)
Calls IDispatch::Invoke.
Definition COM.h:1660
+
T VariantAsInteger(const VARIANT *var, T fallback=0)
Check VARIANT value for integer value.
Definition COM.h:1686
VARIANT BuildVBARRAY(VARTYPE vt, LPCVOID array, ULONG columns, ULONG rows)
Builds VBARRAY of uniform data.
Definition COM.h:1473
-
BOOL VariantAsBoolean(const VARIANT *var, BOOL fallback=FALSE)
Check VARIANT value for boolean value.
Definition COM.h:1711
+
BOOL VariantAsBoolean(const VARIANT *var, BOOL fallback=FALSE)
Check VARIANT value for boolean value.
Definition COM.h:1712
static _Check_return_ HRESULT CoGetObject(LPCWSTR pszName, BIND_OPTS *pBindOptions, REFIID riid, winstd::com_obj< T > &v)
Converts a display name into a moniker that identifies the object named, and then binds to the object...
Definition COM.h:1204
static _Check_return_ HRESULT CoCreateInstance(REFCLSID rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext, winstd::com_obj< T > &v)
Creates and default-initializes a single object of the class associated with a specified CLSID.
Definition COM.h:1189
#define WINSTD_NONCOPYABLE(C)
Declares a class as non-copyable.
Definition Common.h:67
@@ -1585,7 +1586,7 @@ $(function(){ initResizable(false); });
diff --git a/_common_8h_source.html b/_common_8h_source.html index 25b7c401..02a28118 100644 --- a/_common_8h_source.html +++ b/_common_8h_source.html @@ -1597,7 +1597,7 @@ $(function(){ initResizable(false); });
diff --git a/_cred_8h_source.html b/_cred_8h_source.html index 6b6872d8..32ec8812 100644 --- a/_cred_8h_source.html +++ b/_cred_8h_source.html @@ -297,7 +297,7 @@ $(function(){ initResizable(false); }); diff --git a/_crypt_8h_source.html b/_crypt_8h_source.html index b7a9d91c..7f30a17e 100644 --- a/_crypt_8h_source.html +++ b/_crypt_8h_source.html @@ -880,7 +880,7 @@ $(function(){ initResizable(false); }); diff --git a/_e_a_p_8h_source.html b/_e_a_p_8h_source.html index 6a4b9531..3a58f063 100644 --- a/_e_a_p_8h_source.html +++ b/_e_a_p_8h_source.html @@ -741,7 +741,7 @@ $(function(){ initResizable(false); }); diff --git a/_e_t_w_8h_source.html b/_e_t_w_8h_source.html index 4a088db7..a324c7fd 100644 --- a/_e_t_w_8h_source.html +++ b/_e_t_w_8h_source.html @@ -1158,7 +1158,7 @@ $(function(){ initResizable(false); }); diff --git a/_g_d_i_8h_source.html b/_g_d_i_8h_source.html index 02a2352e..7a332c9d 100644 --- a/_g_d_i_8h_source.html +++ b/_g_d_i_8h_source.html @@ -305,7 +305,7 @@ $(function(){ initResizable(false); }); diff --git a/_m_s_i_8h_source.html b/_m_s_i_8h_source.html index 3973ea56..4ac0428d 100644 --- a/_m_s_i_8h_source.html +++ b/_m_s_i_8h_source.html @@ -401,7 +401,7 @@ $(function(){ initResizable(false); }); diff --git a/_s_d_d_l_8h_source.html b/_s_d_d_l_8h_source.html index 2827d0bf..2eb920e7 100644 --- a/_s_d_d_l_8h_source.html +++ b/_s_d_d_l_8h_source.html @@ -203,7 +203,7 @@ $(function(){ initResizable(false); }); diff --git a/_sec_8h_source.html b/_sec_8h_source.html index 3214f75f..c7f53aaf 100644 --- a/_sec_8h_source.html +++ b/_sec_8h_source.html @@ -421,7 +421,7 @@ $(function(){ initResizable(false); }); diff --git a/_setup_a_p_i_8h_source.html b/_setup_a_p_i_8h_source.html index 2a469bcc..6a8884c1 100644 --- a/_setup_a_p_i_8h_source.html +++ b/_setup_a_p_i_8h_source.html @@ -191,7 +191,7 @@ $(function(){ initResizable(false); }); diff --git a/_shell_8h_source.html b/_shell_8h_source.html index de108143..b4657cba 100644 --- a/_shell_8h_source.html +++ b/_shell_8h_source.html @@ -179,7 +179,7 @@ $(function(){ initResizable(false); }); diff --git a/_w_l_a_n_8h_source.html b/_w_l_a_n_8h_source.html index 941e8e8c..7a9fc892 100644 --- a/_w_l_a_n_8h_source.html +++ b/_w_l_a_n_8h_source.html @@ -253,7 +253,7 @@ $(function(){ initResizable(false); }); diff --git a/_win_8h_source.html b/_win_8h_source.html index e81e9d06..a00f0785 100644 --- a/_win_8h_source.html +++ b/_win_8h_source.html @@ -2059,7 +2059,7 @@ $(function(){ initResizable(false); }); diff --git a/_win_h_t_t_p_8h_source.html b/_win_h_t_t_p_8h_source.html index f3291a10..ceb8fe45 100644 --- a/_win_h_t_t_p_8h_source.html +++ b/_win_h_t_t_p_8h_source.html @@ -181,7 +181,7 @@ $(function(){ initResizable(false); }); diff --git a/_win_sock2_8h_source.html b/_win_sock2_8h_source.html index 50a777f6..e25e393f 100644 --- a/_win_sock2_8h_source.html +++ b/_win_sock2_8h_source.html @@ -289,7 +289,7 @@ $(function(){ initResizable(false); }); diff --git a/_win_trust_8h_source.html b/_win_trust_8h_source.html index 1ebd8292..615ad44a 100644 --- a/_win_trust_8h_source.html +++ b/_win_trust_8h_source.html @@ -151,7 +151,7 @@ $(function(){ initResizable(false); }); diff --git a/annotated.html b/annotated.html index c454ff0f..157c3185 100644 --- a/annotated.html +++ b/annotated.html @@ -188,7 +188,7 @@ $(function(){ initResizable(false); }); diff --git a/classes.html b/classes.html index c1eaeab9..120ee98c 100644 --- a/classes.html +++ b/classes.html @@ -148,7 +148,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1actctx__activator-members.html b/classwinstd_1_1actctx__activator-members.html index 4cdf212b..d8c6bcf5 100644 --- a/classwinstd_1_1actctx__activator-members.html +++ b/classwinstd_1_1actctx__activator-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1actctx__activator.html b/classwinstd_1_1actctx__activator.html index 5d394e78..607a5619 100644 --- a/classwinstd_1_1actctx__activator.html +++ b/classwinstd_1_1actctx__activator.html @@ -189,7 +189,7 @@ ULONG_PTR m_cookie diff --git a/classwinstd_1_1addrinfo-members.html b/classwinstd_1_1addrinfo-members.html index 0e278282..4fbcf47e 100644 --- a/classwinstd_1_1addrinfo-members.html +++ b/classwinstd_1_1addrinfo-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1addrinfo.html b/classwinstd_1_1addrinfo.html index 9fc88368..f046ded1 100644 --- a/classwinstd_1_1addrinfo.html +++ b/classwinstd_1_1addrinfo.html @@ -271,7 +271,7 @@ static const PADDRINFOA in diff --git a/classwinstd_1_1basic__string__guid-members.html b/classwinstd_1_1basic__string__guid-members.html index 67297a22..798a6d3d 100644 --- a/classwinstd_1_1basic__string__guid-members.html +++ b/classwinstd_1_1basic__string__guid-members.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1basic__string__guid.html b/classwinstd_1_1basic__string__guid.html index c2ee2ef6..63e81bf9 100644 --- a/classwinstd_1_1basic__string__guid.html +++ b/classwinstd_1_1basic__string__guid.html @@ -163,7 +163,7 @@ template<class _Elem , class _Traits , class _Ax > diff --git a/classwinstd_1_1basic__string__msg-members.html b/classwinstd_1_1basic__string__msg-members.html index 23b9895c..3fe5d076 100644 --- a/classwinstd_1_1basic__string__msg-members.html +++ b/classwinstd_1_1basic__string__msg-members.html @@ -105,7 +105,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1basic__string__msg.html b/classwinstd_1_1basic__string__msg.html index 801dcc2e..35af36b9 100644 --- a/classwinstd_1_1basic__string__msg.html +++ b/classwinstd_1_1basic__string__msg.html @@ -454,7 +454,7 @@ template<class _Elem , class _Traits , class _Ax > diff --git a/classwinstd_1_1basic__string__printf-members.html b/classwinstd_1_1basic__string__printf-members.html index bcf6d778..716a7cf0 100644 --- a/classwinstd_1_1basic__string__printf-members.html +++ b/classwinstd_1_1basic__string__printf-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1basic__string__printf.html b/classwinstd_1_1basic__string__printf.html index ad6a4384..b26c68ea 100644 --- a/classwinstd_1_1basic__string__printf.html +++ b/classwinstd_1_1basic__string__printf.html @@ -265,7 +265,7 @@ template<class _Elem , class _Traits , class _Ax > diff --git a/classwinstd_1_1bstr-members.html b/classwinstd_1_1bstr-members.html index 8101d760..30a0ad96 100644 --- a/classwinstd_1_1bstr-members.html +++ b/classwinstd_1_1bstr-members.html @@ -135,7 +135,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1bstr.html b/classwinstd_1_1bstr.html index 816ccc35..f6921829 100644 --- a/classwinstd_1_1bstr.html +++ b/classwinstd_1_1bstr.html @@ -385,7 +385,7 @@ static const BSTR invalid< diff --git a/classwinstd_1_1cert__chain__context-members.html b/classwinstd_1_1cert__chain__context-members.html index da5c0068..1a749f35 100644 --- a/classwinstd_1_1cert__chain__context-members.html +++ b/classwinstd_1_1cert__chain__context-members.html @@ -131,7 +131,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1cert__chain__context.html b/classwinstd_1_1cert__chain__context.html index 151f5581..ede041b0 100644 --- a/classwinstd_1_1cert__chain__context.html +++ b/classwinstd_1_1cert__chain__context.html @@ -342,7 +342,7 @@ static const PCCERT_CHAIN_CONTEXT  diff --git a/classwinstd_1_1cert__context-members.html b/classwinstd_1_1cert__context-members.html index 87a93332..0b20ce77 100644 --- a/classwinstd_1_1cert__context-members.html +++ b/classwinstd_1_1cert__context-members.html @@ -137,7 +137,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1cert__context.html b/classwinstd_1_1cert__context.html index 7fd27ed1..f7a0938d 100644 --- a/classwinstd_1_1cert__context.html +++ b/classwinstd_1_1cert__context.html @@ -588,7 +588,7 @@ static const PCCERT_CONTEXT < diff --git a/classwinstd_1_1cert__store-members.html b/classwinstd_1_1cert__store-members.html index 6041b7b6..27c31487 100644 --- a/classwinstd_1_1cert__store-members.html +++ b/classwinstd_1_1cert__store-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1cert__store.html b/classwinstd_1_1cert__store.html index a3296837..ebf9e05d 100644 --- a/classwinstd_1_1cert__store.html +++ b/classwinstd_1_1cert__store.html @@ -273,7 +273,7 @@ static const HCERTSTORE in diff --git a/classwinstd_1_1clipboard__opener-members.html b/classwinstd_1_1clipboard__opener-members.html index 85d5f04c..cd429226 100644 --- a/classwinstd_1_1clipboard__opener-members.html +++ b/classwinstd_1_1clipboard__opener-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1clipboard__opener.html b/classwinstd_1_1clipboard__opener.html index 33bb6540..c651903d 100644 --- a/classwinstd_1_1clipboard__opener.html +++ b/classwinstd_1_1clipboard__opener.html @@ -175,7 +175,7 @@ Public Member Functions diff --git a/classwinstd_1_1com__initializer-members.html b/classwinstd_1_1com__initializer-members.html index fbed4f35..c8c327fd 100644 --- a/classwinstd_1_1com__initializer-members.html +++ b/classwinstd_1_1com__initializer-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1com__initializer.html b/classwinstd_1_1com__initializer.html index 685d4c03..72b95bc0 100644 --- a/classwinstd_1_1com__initializer.html +++ b/classwinstd_1_1com__initializer.html @@ -210,7 +210,7 @@ Public Member Functions diff --git a/classwinstd_1_1com__obj-members.html b/classwinstd_1_1com__obj-members.html index ef6060a5..a3d2a0f4 100644 --- a/classwinstd_1_1com__obj-members.html +++ b/classwinstd_1_1com__obj-members.html @@ -137,7 +137,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1com__obj.html b/classwinstd_1_1com__obj.html index e7363613..35c3d06e 100644 --- a/classwinstd_1_1com__obj.html +++ b/classwinstd_1_1com__obj.html @@ -507,7 +507,7 @@ template<class _Other > diff --git a/classwinstd_1_1com__runtime__error-members.html b/classwinstd_1_1com__runtime__error-members.html index deae4907..82de7d8a 100644 --- a/classwinstd_1_1com__runtime__error-members.html +++ b/classwinstd_1_1com__runtime__error-members.html @@ -105,7 +105,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1com__runtime__error.html b/classwinstd_1_1com__runtime__error.html index 575f542c..d15353a8 100644 --- a/classwinstd_1_1com__runtime__error.html +++ b/classwinstd_1_1com__runtime__error.html @@ -229,7 +229,7 @@ typedef HRESULT error_type diff --git a/classwinstd_1_1console__ctrl__handler-members.html b/classwinstd_1_1console__ctrl__handler-members.html index c0232558..db8d69cd 100644 --- a/classwinstd_1_1console__ctrl__handler-members.html +++ b/classwinstd_1_1console__ctrl__handler-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1console__ctrl__handler.html b/classwinstd_1_1console__ctrl__handler.html index 2a207374..f9ec69eb 100644 --- a/classwinstd_1_1console__ctrl__handler.html +++ b/classwinstd_1_1console__ctrl__handler.html @@ -193,7 +193,7 @@ PHANDLER_ROUTINE m_handler diff --git a/classwinstd_1_1critical__section-members.html b/classwinstd_1_1critical__section-members.html index b212d008..227cbcb3 100644 --- a/classwinstd_1_1critical__section-members.html +++ b/classwinstd_1_1critical__section-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1critical__section.html b/classwinstd_1_1critical__section.html index 1fd512f0..6f7057c1 100644 --- a/classwinstd_1_1critical__section.html +++ b/classwinstd_1_1critical__section.html @@ -215,7 +215,7 @@ CRITICAL_SECTION m_data diff --git a/classwinstd_1_1crypt__hash-members.html b/classwinstd_1_1crypt__hash-members.html index aa4196d7..f25f6bf2 100644 --- a/classwinstd_1_1crypt__hash-members.html +++ b/classwinstd_1_1crypt__hash-members.html @@ -131,7 +131,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1crypt__hash.html b/classwinstd_1_1crypt__hash.html index 52bfbc37..29f0a011 100644 --- a/classwinstd_1_1crypt__hash.html +++ b/classwinstd_1_1crypt__hash.html @@ -342,7 +342,7 @@ static const HCRYPTHASH in diff --git a/classwinstd_1_1crypt__key-members.html b/classwinstd_1_1crypt__key-members.html index 69bcffa2..823d0069 100644 --- a/classwinstd_1_1crypt__key-members.html +++ b/classwinstd_1_1crypt__key-members.html @@ -132,7 +132,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1crypt__key.html b/classwinstd_1_1crypt__key.html index 6135f602..cd656214 100644 --- a/classwinstd_1_1crypt__key.html +++ b/classwinstd_1_1crypt__key.html @@ -390,7 +390,7 @@ static const HCRYPTKEY inv diff --git a/classwinstd_1_1crypt__prov-members.html b/classwinstd_1_1crypt__prov-members.html index 47e66506..9809cb32 100644 --- a/classwinstd_1_1crypt__prov-members.html +++ b/classwinstd_1_1crypt__prov-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1crypt__prov.html b/classwinstd_1_1crypt__prov.html index bab69b68..568bb105 100644 --- a/classwinstd_1_1crypt__prov.html +++ b/classwinstd_1_1crypt__prov.html @@ -271,7 +271,7 @@ static const HCRYPTPROV in diff --git a/classwinstd_1_1data__blob-members.html b/classwinstd_1_1data__blob-members.html index 5f28f794..e61e2aca 100644 --- a/classwinstd_1_1data__blob-members.html +++ b/classwinstd_1_1data__blob-members.html @@ -108,7 +108,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1data__blob.html b/classwinstd_1_1data__blob.html index 68dc89f7..e244edba 100644 --- a/classwinstd_1_1data__blob.html +++ b/classwinstd_1_1data__blob.html @@ -158,7 +158,7 @@ BYTE * data () noexcep diff --git a/classwinstd_1_1dc-members.html b/classwinstd_1_1dc-members.html index 5ee64da7..1afb4250 100644 --- a/classwinstd_1_1dc-members.html +++ b/classwinstd_1_1dc-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1dc.html b/classwinstd_1_1dc.html index e25a7bac..7e1dacc4 100644 --- a/classwinstd_1_1dc.html +++ b/classwinstd_1_1dc.html @@ -270,7 +270,7 @@ static const HDC invalid diff --git a/classwinstd_1_1dc__selector-members.html b/classwinstd_1_1dc__selector-members.html index a140c490..86a72777 100644 --- a/classwinstd_1_1dc__selector-members.html +++ b/classwinstd_1_1dc__selector-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1dc__selector.html b/classwinstd_1_1dc__selector.html index 0c55404b..17407121 100644 --- a/classwinstd_1_1dc__selector.html +++ b/classwinstd_1_1dc__selector.html @@ -223,7 +223,7 @@ HGDIOBJ m_orig diff --git a/classwinstd_1_1dplhandle-members.html b/classwinstd_1_1dplhandle-members.html index c9cf3fe2..74cf8ecc 100644 --- a/classwinstd_1_1dplhandle-members.html +++ b/classwinstd_1_1dplhandle-members.html @@ -130,7 +130,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1dplhandle.html b/classwinstd_1_1dplhandle.html index ad6e7ebe..32dc49ab 100644 --- a/classwinstd_1_1dplhandle.html +++ b/classwinstd_1_1dplhandle.html @@ -554,7 +554,7 @@ template<class T , T INVAL> diff --git a/classwinstd_1_1eap__attr-members.html b/classwinstd_1_1eap__attr-members.html index bf4a42f2..55b48381 100644 --- a/classwinstd_1_1eap__attr-members.html +++ b/classwinstd_1_1eap__attr-members.html @@ -105,7 +105,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1eap__attr.html b/classwinstd_1_1eap__attr.html index ea3bd7f6..01875794 100644 --- a/classwinstd_1_1eap__attr.html +++ b/classwinstd_1_1eap__attr.html @@ -187,7 +187,7 @@ Public Member Functions diff --git a/classwinstd_1_1eap__method__info__array-members.html b/classwinstd_1_1eap__method__info__array-members.html index 31dc1dd7..a6bcaa00 100644 --- a/classwinstd_1_1eap__method__info__array-members.html +++ b/classwinstd_1_1eap__method__info__array-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1eap__method__info__array.html b/classwinstd_1_1eap__method__info__array.html index 88636a41..268c6534 100644 --- a/classwinstd_1_1eap__method__info__array.html +++ b/classwinstd_1_1eap__method__info__array.html @@ -200,7 +200,7 @@ Public Member Functions diff --git a/classwinstd_1_1eap__method__prop-members.html b/classwinstd_1_1eap__method__prop-members.html index be665c1a..b1c0f554 100644 --- a/classwinstd_1_1eap__method__prop-members.html +++ b/classwinstd_1_1eap__method__prop-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1eap__method__prop.html b/classwinstd_1_1eap__method__prop.html index d257ce03..0694a819 100644 --- a/classwinstd_1_1eap__method__prop.html +++ b/classwinstd_1_1eap__method__prop.html @@ -242,7 +242,7 @@ Public Member Functions diff --git a/classwinstd_1_1eap__packet-members.html b/classwinstd_1_1eap__packet-members.html index 49036480..08c57d22 100644 --- a/classwinstd_1_1eap__packet-members.html +++ b/classwinstd_1_1eap__packet-members.html @@ -133,7 +133,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1eap__packet.html b/classwinstd_1_1eap__packet.html index b3a7a9ce..b2396ab1 100644 --- a/classwinstd_1_1eap__packet.html +++ b/classwinstd_1_1eap__packet.html @@ -361,7 +361,7 @@ static const EapPacket * i diff --git a/classwinstd_1_1eap__runtime__error-members.html b/classwinstd_1_1eap__runtime__error-members.html index 925bf250..7c138835 100644 --- a/classwinstd_1_1eap__runtime__error-members.html +++ b/classwinstd_1_1eap__runtime__error-members.html @@ -127,7 +127,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1eap__runtime__error.html b/classwinstd_1_1eap__runtime__error.html index fb32ef59..251b884f 100644 --- a/classwinstd_1_1eap__runtime__error.html +++ b/classwinstd_1_1eap__runtime__error.html @@ -350,7 +350,7 @@ typedef DWORD error_type diff --git a/classwinstd_1_1event__data-members.html b/classwinstd_1_1event__data-members.html index 6242614a..99895d03 100644 --- a/classwinstd_1_1event__data-members.html +++ b/classwinstd_1_1event__data-members.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__data.html b/classwinstd_1_1event__data.html index 9119da33..4e428747 100644 --- a/classwinstd_1_1event__data.html +++ b/classwinstd_1_1event__data.html @@ -538,7 +538,7 @@ template<class _Elem , class _Traits , class _Ax > diff --git a/classwinstd_1_1event__fn__auto-members.html b/classwinstd_1_1event__fn__auto-members.html index 3301d7e8..99485208 100644 --- a/classwinstd_1_1event__fn__auto-members.html +++ b/classwinstd_1_1event__fn__auto-members.html @@ -107,7 +107,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__fn__auto.html b/classwinstd_1_1event__fn__auto.html index eb6a604f..f853401d 100644 --- a/classwinstd_1_1event__fn__auto.html +++ b/classwinstd_1_1event__fn__auto.html @@ -153,7 +153,7 @@ EVENT_DATA_DESCRIPTOR m_fn diff --git a/classwinstd_1_1event__fn__auto__ret-members.html b/classwinstd_1_1event__fn__auto__ret-members.html index 0dd4c714..1ab8ae8f 100644 --- a/classwinstd_1_1event__fn__auto__ret-members.html +++ b/classwinstd_1_1event__fn__auto__ret-members.html @@ -108,7 +108,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__fn__auto__ret.html b/classwinstd_1_1event__fn__auto__ret.html index 67622812..92aebbd8 100644 --- a/classwinstd_1_1event__fn__auto__ret.html +++ b/classwinstd_1_1event__fn__auto__ret.html @@ -158,7 +158,7 @@ class winstd::event_fn_auto_ret< T >

Helper template to write an e

diff --git a/classwinstd_1_1event__log-members.html b/classwinstd_1_1event__log-members.html index ce190824..dc28262e 100644 --- a/classwinstd_1_1event__log-members.html +++ b/classwinstd_1_1event__log-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__log.html b/classwinstd_1_1event__log.html index 871bbf72..26fb9899 100644 --- a/classwinstd_1_1event__log.html +++ b/classwinstd_1_1event__log.html @@ -271,7 +271,7 @@ static const HANDLE invali diff --git a/classwinstd_1_1event__provider-members.html b/classwinstd_1_1event__provider-members.html index c56f4071..49ad08d1 100644 --- a/classwinstd_1_1event__provider-members.html +++ b/classwinstd_1_1event__provider-members.html @@ -130,7 +130,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__provider.html b/classwinstd_1_1event__provider.html index d9259902..42b505bc 100644 --- a/classwinstd_1_1event__provider.html +++ b/classwinstd_1_1event__provider.html @@ -643,7 +643,7 @@ static const REGHANDLE inv diff --git a/classwinstd_1_1event__rec-members.html b/classwinstd_1_1event__rec-members.html index 1c50db2f..c0c1d325 100644 --- a/classwinstd_1_1event__rec-members.html +++ b/classwinstd_1_1event__rec-members.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__rec.html b/classwinstd_1_1event__rec.html index e378116b..1ff69979 100644 --- a/classwinstd_1_1event__rec.html +++ b/classwinstd_1_1event__rec.html @@ -512,7 +512,7 @@ Protected Member Functions diff --git a/classwinstd_1_1event__session-members.html b/classwinstd_1_1event__session-members.html index 841f2d27..0910f9c3 100644 --- a/classwinstd_1_1event__session-members.html +++ b/classwinstd_1_1event__session-members.html @@ -133,7 +133,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__session.html b/classwinstd_1_1event__session.html index 5410f86c..10666cb3 100644 --- a/classwinstd_1_1event__session.html +++ b/classwinstd_1_1event__session.html @@ -659,7 +659,7 @@ static const TRACEHANDLE i diff --git a/classwinstd_1_1event__trace-members.html b/classwinstd_1_1event__trace-members.html index b6a72fa8..96b50075 100644 --- a/classwinstd_1_1event__trace-members.html +++ b/classwinstd_1_1event__trace-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__trace.html b/classwinstd_1_1event__trace.html index d876d6c9..c3ffcdf0 100644 --- a/classwinstd_1_1event__trace.html +++ b/classwinstd_1_1event__trace.html @@ -271,7 +271,7 @@ static const TRACEHANDLE i diff --git a/classwinstd_1_1event__trace__enabler-members.html b/classwinstd_1_1event__trace__enabler-members.html index 88cdbde3..730839e9 100644 --- a/classwinstd_1_1event__trace__enabler-members.html +++ b/classwinstd_1_1event__trace__enabler-members.html @@ -111,7 +111,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1event__trace__enabler.html b/classwinstd_1_1event__trace__enabler.html index e599b2a2..db2b41dc 100644 --- a/classwinstd_1_1event__trace__enabler.html +++ b/classwinstd_1_1event__trace__enabler.html @@ -341,7 +341,7 @@ PEVENT_FILTER_DESCRIPTOR m diff --git a/classwinstd_1_1find__file-members.html b/classwinstd_1_1find__file-members.html index 5029b534..e050b52e 100644 --- a/classwinstd_1_1find__file-members.html +++ b/classwinstd_1_1find__file-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1find__file.html b/classwinstd_1_1find__file.html index 64d8c421..6f4960d4 100644 --- a/classwinstd_1_1find__file.html +++ b/classwinstd_1_1find__file.html @@ -271,7 +271,7 @@ static const HANDLE invali diff --git a/classwinstd_1_1gdi__handle-members.html b/classwinstd_1_1gdi__handle-members.html index 17b60bb0..6ee0d4b8 100644 --- a/classwinstd_1_1gdi__handle-members.html +++ b/classwinstd_1_1gdi__handle-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1gdi__handle.html b/classwinstd_1_1gdi__handle.html index 8500f850..3b42e7de 100644 --- a/classwinstd_1_1gdi__handle.html +++ b/classwinstd_1_1gdi__handle.html @@ -275,7 +275,7 @@ template<class T > diff --git a/classwinstd_1_1globalmem__accessor-members.html b/classwinstd_1_1globalmem__accessor-members.html index 44bb04e5..768f8e71 100644 --- a/classwinstd_1_1globalmem__accessor-members.html +++ b/classwinstd_1_1globalmem__accessor-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1globalmem__accessor.html b/classwinstd_1_1globalmem__accessor.html index 69293b3c..dba38b81 100644 --- a/classwinstd_1_1globalmem__accessor.html +++ b/classwinstd_1_1globalmem__accessor.html @@ -196,7 +196,7 @@ template<class T > diff --git a/classwinstd_1_1handle-members.html b/classwinstd_1_1handle-members.html index 65fd784a..f7746fc1 100644 --- a/classwinstd_1_1handle-members.html +++ b/classwinstd_1_1handle-members.html @@ -121,7 +121,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1handle.html b/classwinstd_1_1handle.html index d814f7b1..67d228c9 100644 --- a/classwinstd_1_1handle.html +++ b/classwinstd_1_1handle.html @@ -849,7 +849,7 @@ template<class T , const T INVAL> diff --git a/classwinstd_1_1heap-members.html b/classwinstd_1_1heap-members.html index dcc4422f..8b68c4ff 100644 --- a/classwinstd_1_1heap-members.html +++ b/classwinstd_1_1heap-members.html @@ -123,7 +123,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1heap.html b/classwinstd_1_1heap.html index 4646b8c8..41c91904 100644 --- a/classwinstd_1_1heap.html +++ b/classwinstd_1_1heap.html @@ -306,7 +306,7 @@ static const HANDLE invali diff --git a/classwinstd_1_1heap__allocator-members.html b/classwinstd_1_1heap__allocator-members.html index 67b9d3b5..58856284 100644 --- a/classwinstd_1_1heap__allocator-members.html +++ b/classwinstd_1_1heap__allocator-members.html @@ -114,7 +114,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1heap__allocator.html b/classwinstd_1_1heap__allocator.html index 3327d7c8..19c084d6 100644 --- a/classwinstd_1_1heap__allocator.html +++ b/classwinstd_1_1heap__allocator.html @@ -451,7 +451,7 @@ template<class _Ty > diff --git a/classwinstd_1_1http-members.html b/classwinstd_1_1http-members.html index 8721afa1..07965142 100644 --- a/classwinstd_1_1http-members.html +++ b/classwinstd_1_1http-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1http.html b/classwinstd_1_1http.html index e78ba592..924d1130 100644 --- a/classwinstd_1_1http.html +++ b/classwinstd_1_1http.html @@ -271,7 +271,7 @@ static const HINTERNET inv diff --git a/classwinstd_1_1icon-members.html b/classwinstd_1_1icon-members.html index 1aebd404..39a3331f 100644 --- a/classwinstd_1_1icon-members.html +++ b/classwinstd_1_1icon-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1icon.html b/classwinstd_1_1icon.html index 6bbf0702..62f446fc 100644 --- a/classwinstd_1_1icon.html +++ b/classwinstd_1_1icon.html @@ -270,7 +270,7 @@ static const HICON invalid diff --git a/classwinstd_1_1impersonator-members.html b/classwinstd_1_1impersonator-members.html index e755567b..f8c93dbb 100644 --- a/classwinstd_1_1impersonator-members.html +++ b/classwinstd_1_1impersonator-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1impersonator.html b/classwinstd_1_1impersonator.html index f92b96c9..eb2d2167 100644 --- a/classwinstd_1_1impersonator.html +++ b/classwinstd_1_1impersonator.html @@ -170,7 +170,7 @@ BOOL m_cookie diff --git a/classwinstd_1_1last__error__saver-members.html b/classwinstd_1_1last__error__saver-members.html index ba5dbde5..1200a057 100644 --- a/classwinstd_1_1last__error__saver-members.html +++ b/classwinstd_1_1last__error__saver-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1last__error__saver.html b/classwinstd_1_1last__error__saver.html index 18b56d8b..93c8152e 100644 --- a/classwinstd_1_1last__error__saver.html +++ b/classwinstd_1_1last__error__saver.html @@ -182,7 +182,7 @@ DWORD m_error diff --git a/classwinstd_1_1library-members.html b/classwinstd_1_1library-members.html index ad8e9caf..a839e8ec 100644 --- a/classwinstd_1_1library-members.html +++ b/classwinstd_1_1library-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1library.html b/classwinstd_1_1library.html index 16d6c7e6..6254fc34 100644 --- a/classwinstd_1_1library.html +++ b/classwinstd_1_1library.html @@ -271,7 +271,7 @@ static const HMODULE inval diff --git a/classwinstd_1_1mutex__locker-members.html b/classwinstd_1_1mutex__locker-members.html index 38cd0aca..cdf38670 100644 --- a/classwinstd_1_1mutex__locker-members.html +++ b/classwinstd_1_1mutex__locker-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1mutex__locker.html b/classwinstd_1_1mutex__locker.html index 3f814348..491a89e2 100644 --- a/classwinstd_1_1mutex__locker.html +++ b/classwinstd_1_1mutex__locker.html @@ -193,7 +193,7 @@ HANDLE m_h diff --git a/classwinstd_1_1num__runtime__error-members.html b/classwinstd_1_1num__runtime__error-members.html index 66073abe..523657bd 100644 --- a/classwinstd_1_1num__runtime__error-members.html +++ b/classwinstd_1_1num__runtime__error-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1num__runtime__error.html b/classwinstd_1_1num__runtime__error.html index 7b92cd93..fa1eab92 100644 --- a/classwinstd_1_1num__runtime__error.html +++ b/classwinstd_1_1num__runtime__error.html @@ -226,7 +226,7 @@ template<typename _Tn > diff --git a/classwinstd_1_1process__information-members.html b/classwinstd_1_1process__information-members.html index bd68cd1a..aa53afcb 100644 --- a/classwinstd_1_1process__information-members.html +++ b/classwinstd_1_1process__information-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1process__information.html b/classwinstd_1_1process__information.html index f17c9545..658d3998 100644 --- a/classwinstd_1_1process__information.html +++ b/classwinstd_1_1process__information.html @@ -126,7 +126,7 @@ Public Member Functions diff --git a/classwinstd_1_1reg__key-members.html b/classwinstd_1_1reg__key-members.html index 89cae0d1..42604532 100644 --- a/classwinstd_1_1reg__key-members.html +++ b/classwinstd_1_1reg__key-members.html @@ -123,7 +123,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1reg__key.html b/classwinstd_1_1reg__key.html index 582c8f24..e0fd33f5 100644 --- a/classwinstd_1_1reg__key.html +++ b/classwinstd_1_1reg__key.html @@ -314,7 +314,7 @@ static const HKEY invalid< diff --git a/classwinstd_1_1safearray-members.html b/classwinstd_1_1safearray-members.html index 04fb803a..4469f122 100644 --- a/classwinstd_1_1safearray-members.html +++ b/classwinstd_1_1safearray-members.html @@ -131,7 +131,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1safearray.html b/classwinstd_1_1safearray.html index 9ab2984c..1c522da8 100644 --- a/classwinstd_1_1safearray.html +++ b/classwinstd_1_1safearray.html @@ -341,7 +341,7 @@ static const SAFEARRAY * i diff --git a/classwinstd_1_1safearray__accessor-members.html b/classwinstd_1_1safearray__accessor-members.html index 8151eff9..a49667cc 100644 --- a/classwinstd_1_1safearray__accessor-members.html +++ b/classwinstd_1_1safearray__accessor-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1safearray__accessor.html b/classwinstd_1_1safearray__accessor.html index 9216dd2b..bd03c006 100644 --- a/classwinstd_1_1safearray__accessor.html +++ b/classwinstd_1_1safearray__accessor.html @@ -196,7 +196,7 @@ template<class T > diff --git a/classwinstd_1_1sanitizing__allocator-members.html b/classwinstd_1_1sanitizing__allocator-members.html index e51c2bff..a1cfcbfd 100644 --- a/classwinstd_1_1sanitizing__allocator-members.html +++ b/classwinstd_1_1sanitizing__allocator-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sanitizing__allocator.html b/classwinstd_1_1sanitizing__allocator.html index a551fdc3..f2c8ceed 100644 --- a/classwinstd_1_1sanitizing__allocator.html +++ b/classwinstd_1_1sanitizing__allocator.html @@ -152,7 +152,7 @@ class winstd::sanitizing_allocator< _Ty >

An allocator template th

diff --git a/classwinstd_1_1sanitizing__blob-members.html b/classwinstd_1_1sanitizing__blob-members.html index 0f022dc0..dc846e0d 100644 --- a/classwinstd_1_1sanitizing__blob-members.html +++ b/classwinstd_1_1sanitizing__blob-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sanitizing__blob.html b/classwinstd_1_1sanitizing__blob.html index 3831fdb3..a258da0f 100644 --- a/classwinstd_1_1sanitizing__blob.html +++ b/classwinstd_1_1sanitizing__blob.html @@ -129,7 +129,7 @@ class winstd::sanitizing_blob< N >

Sanitizing BLOB.

diff --git a/classwinstd_1_1sc__handle-members.html b/classwinstd_1_1sc__handle-members.html index 52fe25f3..74990eb1 100644 --- a/classwinstd_1_1sc__handle-members.html +++ b/classwinstd_1_1sc__handle-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sc__handle.html b/classwinstd_1_1sc__handle.html index c3a919dd..d573461b 100644 --- a/classwinstd_1_1sc__handle.html +++ b/classwinstd_1_1sc__handle.html @@ -270,7 +270,7 @@ static const SC_HANDLE inv diff --git a/classwinstd_1_1sec__buffer__desc-members.html b/classwinstd_1_1sec__buffer__desc-members.html index 6437e10b..a4fb4a7b 100644 --- a/classwinstd_1_1sec__buffer__desc-members.html +++ b/classwinstd_1_1sec__buffer__desc-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sec__buffer__desc.html b/classwinstd_1_1sec__buffer__desc.html index 089e2a6a..66699326 100644 --- a/classwinstd_1_1sec__buffer__desc.html +++ b/classwinstd_1_1sec__buffer__desc.html @@ -154,7 +154,7 @@ Public Member Functions diff --git a/classwinstd_1_1sec__context-members.html b/classwinstd_1_1sec__context-members.html index ea964f19..f6ac726d 100644 --- a/classwinstd_1_1sec__context-members.html +++ b/classwinstd_1_1sec__context-members.html @@ -129,7 +129,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sec__context.html b/classwinstd_1_1sec__context.html index 19219a89..8bc3dc66 100644 --- a/classwinstd_1_1sec__context.html +++ b/classwinstd_1_1sec__context.html @@ -478,7 +478,7 @@ static const PCtxtHandle i diff --git a/classwinstd_1_1sec__credentials-members.html b/classwinstd_1_1sec__credentials-members.html index 44fc671b..fb1c9f14 100644 --- a/classwinstd_1_1sec__credentials-members.html +++ b/classwinstd_1_1sec__credentials-members.html @@ -128,7 +128,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sec__credentials.html b/classwinstd_1_1sec__credentials.html index ae10f43a..8444337b 100644 --- a/classwinstd_1_1sec__credentials.html +++ b/classwinstd_1_1sec__credentials.html @@ -460,7 +460,7 @@ static const PCredHandle i diff --git a/classwinstd_1_1sec__runtime__error-members.html b/classwinstd_1_1sec__runtime__error-members.html index 80fddcc1..22463ee8 100644 --- a/classwinstd_1_1sec__runtime__error-members.html +++ b/classwinstd_1_1sec__runtime__error-members.html @@ -106,7 +106,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1sec__runtime__error.html b/classwinstd_1_1sec__runtime__error.html index 0e0e89bb..076c3a6e 100644 --- a/classwinstd_1_1sec__runtime__error.html +++ b/classwinstd_1_1sec__runtime__error.html @@ -265,7 +265,7 @@ typedef SECURITY_STATUS er diff --git a/classwinstd_1_1security__attributes-members.html b/classwinstd_1_1security__attributes-members.html index 1ad170d0..30c5d9a2 100644 --- a/classwinstd_1_1security__attributes-members.html +++ b/classwinstd_1_1security__attributes-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1security__attributes.html b/classwinstd_1_1security__attributes.html index d9c1d2cc..e345f317 100644 --- a/classwinstd_1_1security__attributes.html +++ b/classwinstd_1_1security__attributes.html @@ -127,7 +127,7 @@ Public Member Functions diff --git a/classwinstd_1_1security__id-members.html b/classwinstd_1_1security__id-members.html index 67c23cc6..277a5128 100644 --- a/classwinstd_1_1security__id-members.html +++ b/classwinstd_1_1security__id-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1security__id.html b/classwinstd_1_1security__id.html index 8ff75190..17221cf7 100644 --- a/classwinstd_1_1security__id.html +++ b/classwinstd_1_1security__id.html @@ -270,7 +270,7 @@ static const PSID invalid< diff --git a/classwinstd_1_1setup__device__info__list-members.html b/classwinstd_1_1setup__device__info__list-members.html index 417708af..cf253c92 100644 --- a/classwinstd_1_1setup__device__info__list-members.html +++ b/classwinstd_1_1setup__device__info__list-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1setup__device__info__list.html b/classwinstd_1_1setup__device__info__list.html index 4402a6da..edd6db1a 100644 --- a/classwinstd_1_1setup__device__info__list.html +++ b/classwinstd_1_1setup__device__info__list.html @@ -273,7 +273,7 @@ static const HDEVINFO inva diff --git a/classwinstd_1_1setup__driver__info__list__builder-members.html b/classwinstd_1_1setup__driver__info__list__builder-members.html index 86db0f6f..232aa218 100644 --- a/classwinstd_1_1setup__driver__info__list__builder-members.html +++ b/classwinstd_1_1setup__driver__info__list__builder-members.html @@ -101,7 +101,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1setup__driver__info__list__builder.html b/classwinstd_1_1setup__driver__info__list__builder.html index 8d7ab2cb..cb6d3213 100644 --- a/classwinstd_1_1setup__driver__info__list__builder.html +++ b/classwinstd_1_1setup__driver__info__list__builder.html @@ -216,7 +216,7 @@ Public Member Functions diff --git a/classwinstd_1_1string__guid-members.html b/classwinstd_1_1string__guid-members.html index 8ad6565c..646e9cd3 100644 --- a/classwinstd_1_1string__guid-members.html +++ b/classwinstd_1_1string__guid-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1string__guid.html b/classwinstd_1_1string__guid.html index 9d746111..d5e3eefe 100644 --- a/classwinstd_1_1string__guid.html +++ b/classwinstd_1_1string__guid.html @@ -162,7 +162,7 @@ Public Member Functions diff --git a/classwinstd_1_1system__impersonator-members.html b/classwinstd_1_1system__impersonator-members.html index 3eb7eede..b4307e7b 100644 --- a/classwinstd_1_1system__impersonator-members.html +++ b/classwinstd_1_1system__impersonator-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1system__impersonator.html b/classwinstd_1_1system__impersonator.html index 6ab8db83..09ea5aa2 100644 --- a/classwinstd_1_1system__impersonator.html +++ b/classwinstd_1_1system__impersonator.html @@ -145,7 +145,7 @@ BOOL m_cookie diff --git a/classwinstd_1_1user__impersonator-members.html b/classwinstd_1_1user__impersonator-members.html index a316db30..053665a6 100644 --- a/classwinstd_1_1user__impersonator-members.html +++ b/classwinstd_1_1user__impersonator-members.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1user__impersonator.html b/classwinstd_1_1user__impersonator.html index cc99f275..975a9ce7 100644 --- a/classwinstd_1_1user__impersonator.html +++ b/classwinstd_1_1user__impersonator.html @@ -179,7 +179,7 @@ BOOL m_cookie diff --git a/classwinstd_1_1variant-members.html b/classwinstd_1_1variant-members.html index 1a4e4a34..db439e7a 100644 --- a/classwinstd_1_1variant-members.html +++ b/classwinstd_1_1variant-members.html @@ -159,7 +159,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1variant.html b/classwinstd_1_1variant.html index 4ec807ea..6edaeb11 100644 --- a/classwinstd_1_1variant.html +++ b/classwinstd_1_1variant.html @@ -616,7 +616,7 @@ virtual ~variant () diff --git a/classwinstd_1_1vmemory-members.html b/classwinstd_1_1vmemory-members.html index 799163c6..24c62bbd 100644 --- a/classwinstd_1_1vmemory-members.html +++ b/classwinstd_1_1vmemory-members.html @@ -129,7 +129,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1vmemory.html b/classwinstd_1_1vmemory.html index 9392796b..58ea294b 100644 --- a/classwinstd_1_1vmemory.html +++ b/classwinstd_1_1vmemory.html @@ -492,7 +492,7 @@ static const LPVOID invali diff --git a/classwinstd_1_1waddrinfo-members.html b/classwinstd_1_1waddrinfo-members.html index a17743ee..00718ebd 100644 --- a/classwinstd_1_1waddrinfo-members.html +++ b/classwinstd_1_1waddrinfo-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1waddrinfo.html b/classwinstd_1_1waddrinfo.html index e54ace55..b3fbeecf 100644 --- a/classwinstd_1_1waddrinfo.html +++ b/classwinstd_1_1waddrinfo.html @@ -271,7 +271,7 @@ static const PADDRINFOW in diff --git a/classwinstd_1_1win__handle-members.html b/classwinstd_1_1win__handle-members.html index abdf86cf..5ef9f651 100644 --- a/classwinstd_1_1win__handle-members.html +++ b/classwinstd_1_1win__handle-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1win__handle.html b/classwinstd_1_1win__handle.html index 6d0fdfa7..c1814727 100644 --- a/classwinstd_1_1win__handle.html +++ b/classwinstd_1_1win__handle.html @@ -275,7 +275,7 @@ template<HANDLE INVALID> diff --git a/classwinstd_1_1win__runtime__error-members.html b/classwinstd_1_1win__runtime__error-members.html index 1419e92a..74c0d010 100644 --- a/classwinstd_1_1win__runtime__error-members.html +++ b/classwinstd_1_1win__runtime__error-members.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1win__runtime__error.html b/classwinstd_1_1win__runtime__error.html index 32696125..60358a69 100644 --- a/classwinstd_1_1win__runtime__error.html +++ b/classwinstd_1_1win__runtime__error.html @@ -381,7 +381,7 @@ typedef DWORD error_type diff --git a/classwinstd_1_1window__dc-members.html b/classwinstd_1_1window__dc-members.html index a4c2ee50..28b0a34e 100644 --- a/classwinstd_1_1window__dc-members.html +++ b/classwinstd_1_1window__dc-members.html @@ -127,7 +127,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1window__dc.html b/classwinstd_1_1window__dc.html index 24ef891b..0e906573 100644 --- a/classwinstd_1_1window__dc.html +++ b/classwinstd_1_1window__dc.html @@ -294,7 +294,7 @@ static const HDC invalid diff --git a/classwinstd_1_1wintrust-members.html b/classwinstd_1_1wintrust-members.html index 8cc6646d..e1681365 100644 --- a/classwinstd_1_1wintrust-members.html +++ b/classwinstd_1_1wintrust-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1wintrust.html b/classwinstd_1_1wintrust.html index e80009cb..1ff96cf5 100644 --- a/classwinstd_1_1wintrust.html +++ b/classwinstd_1_1wintrust.html @@ -120,7 +120,7 @@ virtual ~wintrust () diff --git a/classwinstd_1_1wlan__handle-members.html b/classwinstd_1_1wlan__handle-members.html index e920cb8f..f3cf8b4f 100644 --- a/classwinstd_1_1wlan__handle-members.html +++ b/classwinstd_1_1wlan__handle-members.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1wlan__handle.html b/classwinstd_1_1wlan__handle.html index dc639ddc..94acced1 100644 --- a/classwinstd_1_1wlan__handle.html +++ b/classwinstd_1_1wlan__handle.html @@ -271,7 +271,7 @@ static const HANDLE invali diff --git a/classwinstd_1_1ws2__runtime__error-members.html b/classwinstd_1_1ws2__runtime__error-members.html index 9dd5c885..7de87511 100644 --- a/classwinstd_1_1ws2__runtime__error-members.html +++ b/classwinstd_1_1ws2__runtime__error-members.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1ws2__runtime__error.html b/classwinstd_1_1ws2__runtime__error.html index 1495c2db..0de0eb90 100644 --- a/classwinstd_1_1ws2__runtime__error.html +++ b/classwinstd_1_1ws2__runtime__error.html @@ -380,7 +380,7 @@ typedef int error_type diff --git a/classwinstd_1_1wstring__guid-members.html b/classwinstd_1_1wstring__guid-members.html index 6a9fd52b..7fb98d46 100644 --- a/classwinstd_1_1wstring__guid-members.html +++ b/classwinstd_1_1wstring__guid-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/classwinstd_1_1wstring__guid.html b/classwinstd_1_1wstring__guid.html index 19e9c8a7..e49ac7c0 100644 --- a/classwinstd_1_1wstring__guid.html +++ b/classwinstd_1_1wstring__guid.html @@ -162,7 +162,7 @@ Public Member Functions diff --git a/dir_4be4f7b278e009bf0f1906cf31fb73bd.html b/dir_4be4f7b278e009bf0f1906cf31fb73bd.html index 6e19b8ed..ff1dc86f 100644 --- a/dir_4be4f7b278e009bf0f1906cf31fb73bd.html +++ b/dir_4be4f7b278e009bf0f1906cf31fb73bd.html @@ -101,7 +101,7 @@ Files diff --git a/dir_6f50bb204833d887b928571856c82fbe.html b/dir_6f50bb204833d887b928571856c82fbe.html index 64dc969e..6c252258 100644 --- a/dir_6f50bb204833d887b928571856c82fbe.html +++ b/dir_6f50bb204833d887b928571856c82fbe.html @@ -133,7 +133,7 @@ Files diff --git a/dir_d44c64559bbebec7f509842c48db8b23.html b/dir_d44c64559bbebec7f509842c48db8b23.html index f9239834..324d22af 100644 --- a/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/dir_d44c64559bbebec7f509842c48db8b23.html @@ -101,7 +101,7 @@ Directories diff --git a/files.html b/files.html index eb273d61..7939cf1d 100644 --- a/files.html +++ b/files.html @@ -116,7 +116,7 @@ $(function(){ initResizable(false); }); diff --git a/functions.html b/functions.html index e81a9d9b..ecbe8962 100644 --- a/functions.html +++ b/functions.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_a.html b/functions_a.html index 98de88a9..7f1fddde 100644 --- a/functions_a.html +++ b/functions_a.html @@ -98,7 +98,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_b.html b/functions_b.html index e9f86369..2b36ff3a 100644 --- a/functions_b.html +++ b/functions_b.html @@ -96,7 +96,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_c.html b/functions_c.html index 9a84ab45..5de6fbf4 100644 --- a/functions_c.html +++ b/functions_c.html @@ -107,7 +107,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_d.html b/functions_d.html index 8db6cd47..043f42b0 100644 --- a/functions_d.html +++ b/functions_d.html @@ -104,7 +104,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_e.html b/functions_e.html index 4de06d48..82c112f6 100644 --- a/functions_e.html +++ b/functions_e.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_f.html b/functions_f.html index 6a572eaa..0cc01e16 100644 --- a/functions_f.html +++ b/functions_f.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func.html b/functions_func.html index 8674f671..1d157cdb 100644 --- a/functions_func.html +++ b/functions_func.html @@ -98,7 +98,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_b.html b/functions_func_b.html index 83fca65f..ac9f4053 100644 --- a/functions_func_b.html +++ b/functions_func_b.html @@ -96,7 +96,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_c.html b/functions_func_c.html index dd174979..ef12b72c 100644 --- a/functions_func_c.html +++ b/functions_func_c.html @@ -105,7 +105,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_d.html b/functions_func_d.html index 4f8d7d1d..b83733bc 100644 --- a/functions_func_d.html +++ b/functions_func_d.html @@ -103,7 +103,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_e.html b/functions_func_e.html index 4861181e..44f33d68 100644 --- a/functions_func_e.html +++ b/functions_func_e.html @@ -109,7 +109,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_f.html b/functions_func_f.html index f0e38d3c..b33b7c98 100644 --- a/functions_func_f.html +++ b/functions_func_f.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_g.html b/functions_func_g.html index 97ea38d0..5e718434 100644 --- a/functions_func_g.html +++ b/functions_func_g.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_h.html b/functions_func_h.html index 68a82c97..d2d73bb1 100644 --- a/functions_func_h.html +++ b/functions_func_h.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_i.html b/functions_func_i.html index 7833533a..4eb69a17 100644 --- a/functions_func_i.html +++ b/functions_func_i.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_l.html b/functions_func_l.html index 606e99f9..c76fdf33 100644 --- a/functions_func_l.html +++ b/functions_func_l.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_m.html b/functions_func_m.html index 176c13ef..1dfc3625 100644 --- a/functions_func_m.html +++ b/functions_func_m.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_n.html b/functions_func_n.html index b8443381..7d052a76 100644 --- a/functions_func_n.html +++ b/functions_func_n.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_o.html b/functions_func_o.html index 94fb2cd5..b36060db 100644 --- a/functions_func_o.html +++ b/functions_func_o.html @@ -108,7 +108,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_p.html b/functions_func_p.html index d0e93f31..825cb323 100644 --- a/functions_func_p.html +++ b/functions_func_p.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_q.html b/functions_func_q.html index a5463bc4..f40afd0a 100644 --- a/functions_func_q.html +++ b/functions_func_q.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_r.html b/functions_func_r.html index 85b3fda7..78680404 100644 --- a/functions_func_r.html +++ b/functions_func_r.html @@ -97,7 +97,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_s.html b/functions_func_s.html index 082350cd..457cc36c 100644 --- a/functions_func_s.html +++ b/functions_func_s.html @@ -109,7 +109,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_t.html b/functions_func_t.html index 26bbbff8..8b6781eb 100644 --- a/functions_func_t.html +++ b/functions_func_t.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_u.html b/functions_func_u.html index 9bf326ec..6b4e5073 100644 --- a/functions_func_u.html +++ b/functions_func_u.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_v.html b/functions_func_v.html index 21640155..33e6b1be 100644 --- a/functions_func_v.html +++ b/functions_func_v.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_w.html b/functions_func_w.html index 482031b1..a2196218 100644 --- a/functions_func_w.html +++ b/functions_func_w.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_func_~.html b/functions_func_~.html index 94ca6600..dff20b6e 100644 --- a/functions_func_~.html +++ b/functions_func_~.html @@ -150,7 +150,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_g.html b/functions_g.html index 1dda1d1c..8e0712ea 100644 --- a/functions_g.html +++ b/functions_g.html @@ -94,7 +94,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_h.html b/functions_h.html index 76705ce1..187b8c3f 100644 --- a/functions_h.html +++ b/functions_h.html @@ -96,7 +96,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_i.html b/functions_i.html index d4f11dbc..96f6750a 100644 --- a/functions_i.html +++ b/functions_i.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_l.html b/functions_l.html index d1df850f..732e4c75 100644 --- a/functions_l.html +++ b/functions_l.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_m.html b/functions_m.html index 8c18787f..1a878dae 100644 --- a/functions_m.html +++ b/functions_m.html @@ -130,7 +130,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_n.html b/functions_n.html index c8ad8a42..bb8055fd 100644 --- a/functions_n.html +++ b/functions_n.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_o.html b/functions_o.html index 0a32d308..1c9906d8 100644 --- a/functions_o.html +++ b/functions_o.html @@ -109,7 +109,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_p.html b/functions_p.html index 57fe7646..b51b1475 100644 --- a/functions_p.html +++ b/functions_p.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_q.html b/functions_q.html index 1fd6749f..6dfa0c82 100644 --- a/functions_q.html +++ b/functions_q.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_r.html b/functions_r.html index 8977140d..63aa453f 100644 --- a/functions_r.html +++ b/functions_r.html @@ -98,7 +98,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_s.html b/functions_s.html index 3f50c34a..09073cfb 100644 --- a/functions_s.html +++ b/functions_s.html @@ -110,7 +110,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_t.html b/functions_t.html index 984ee1e0..af70f4da 100644 --- a/functions_t.html +++ b/functions_t.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_type.html b/functions_type.html index ef8a08cb..317c0642 100644 --- a/functions_type.html +++ b/functions_type.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_u.html b/functions_u.html index b1bc05ff..5645fe83 100644 --- a/functions_u.html +++ b/functions_u.html @@ -93,7 +93,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_v.html b/functions_v.html index ac46f318..78e3c5f8 100644 --- a/functions_v.html +++ b/functions_v.html @@ -95,7 +95,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_vars.html b/functions_vars.html index 4a52d4f6..580d1b3f 100644 --- a/functions_vars.html +++ b/functions_vars.html @@ -132,7 +132,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_w.html b/functions_w.html index ee662e6e..7f575f5a 100644 --- a/functions_w.html +++ b/functions_w.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/functions_~.html b/functions_~.html index 35d0120c..75197e22 100644 --- a/functions_~.html +++ b/functions_~.html @@ -150,7 +150,7 @@ $(function(){ initResizable(false); }); diff --git a/group___setup_a_p_i.html b/group___setup_a_p_i.html index 72387ca1..2e64d2b2 100644 --- a/group___setup_a_p_i.html +++ b/group___setup_a_p_i.html @@ -104,7 +104,7 @@ Classes diff --git a/group___win_sock2_a_p_i.html b/group___win_sock2_a_p_i.html index 538b6167..49364441 100644 --- a/group___win_sock2_a_p_i.html +++ b/group___win_sock2_a_p_i.html @@ -210,7 +210,7 @@ Functions diff --git a/group___win_std_c_o_m.html b/group___win_std_c_o_m.html index 3795c991..e6b2c5cd 100644 --- a/group___win_std_c_o_m.html +++ b/group___win_std_c_o_m.html @@ -220,7 +220,7 @@ template<class T > diff --git a/group___win_std_c_o_m_helpers.html b/group___win_std_c_o_m_helpers.html index a40e094d..a6d9cf3b 100644 --- a/group___win_std_c_o_m_helpers.html +++ b/group___win_std_c_o_m_helpers.html @@ -1013,7 +1013,7 @@ template<class T > diff --git a/group___win_std_cred_a_p_i.html b/group___win_std_cred_a_p_i.html index a6bc83b3..ce4f385a 100644 --- a/group___win_std_cred_a_p_i.html +++ b/group___win_std_cred_a_p_i.html @@ -401,7 +401,7 @@ template<class _Traits , class _Ax > diff --git a/group___win_std_crypto_a_p_i.html b/group___win_std_crypto_a_p_i.html index 58044a18..5ff8d76e 100644 --- a/group___win_std_crypto_a_p_i.html +++ b/group___win_std_crypto_a_p_i.html @@ -1034,7 +1034,7 @@ template<class T > diff --git a/group___win_std_e_a_p_a_p_i.html b/group___win_std_e_a_p_a_p_i.html index ef568a8f..ef85f18f 100644 --- a/group___win_std_e_a_p_a_p_i.html +++ b/group___win_std_e_a_p_a_p_i.html @@ -345,7 +345,7 @@ static const EAP_ATTRIBUTE  diff --git a/group___win_std_e_t_w_a_p_i.html b/group___win_std_e_t_w_a_p_i.html index e211c3d3..61dfab5e 100644 --- a/group___win_std_e_t_w_a_p_i.html +++ b/group___win_std_e_t_w_a_p_i.html @@ -278,7 +278,7 @@ template<class _Ty , class _Ax > diff --git a/group___win_std_exceptions.html b/group___win_std_exceptions.html index 9b586bb3..a878702c 100644 --- a/group___win_std_exceptions.html +++ b/group___win_std_exceptions.html @@ -222,7 +222,7 @@ Functions diff --git a/group___win_std_gdi_a_p_i.html b/group___win_std_gdi_a_p_i.html index 87f8c626..7b224b93 100644 --- a/group___win_std_gdi_a_p_i.html +++ b/group___win_std_gdi_a_p_i.html @@ -113,7 +113,7 @@ Classes diff --git a/group___win_std_general.html b/group___win_std_general.html index 6fca43df..069eb5c9 100644 --- a/group___win_std_general.html +++ b/group___win_std_general.html @@ -288,7 +288,7 @@ typedef std::string winstd diff --git a/group___win_std_m_s_i_a_p_i.html b/group___win_std_m_s_i_a_p_i.html index ea9e9532..42ba5a67 100644 --- a/group___win_std_m_s_i_a_p_i.html +++ b/group___win_std_m_s_i_a_p_i.html @@ -572,7 +572,7 @@ template<class _Ty , class _Ax > diff --git a/group___win_std_mem_sanitize.html b/group___win_std_mem_sanitize.html index 481a3c44..78e1ba4b 100644 --- a/group___win_std_mem_sanitize.html +++ b/group___win_std_mem_sanitize.html @@ -153,7 +153,7 @@ typedef sanitizing_stri diff --git a/group___win_std_s_d_d_l.html b/group___win_std_s_d_d_l.html index bd9a4f2f..f572bbdf 100644 --- a/group___win_std_s_d_d_l.html +++ b/group___win_std_s_d_d_l.html @@ -195,7 +195,7 @@ Functions diff --git a/group___win_std_security_a_p_i.html b/group___win_std_security_a_p_i.html index 963f68e0..935fdaba 100644 --- a/group___win_std_security_a_p_i.html +++ b/group___win_std_security_a_p_i.html @@ -107,7 +107,7 @@ Classes diff --git a/group___win_std_shell_w_a_p_i.html b/group___win_std_shell_w_a_p_i.html index 9f3bed33..e98eda3a 100644 --- a/group___win_std_shell_w_a_p_i.html +++ b/group___win_std_shell_w_a_p_i.html @@ -243,7 +243,7 @@ template<class _Traits , class _Ax > diff --git a/group___win_std_str_format.html b/group___win_std_str_format.html index da6103eb..3a361168 100644 --- a/group___win_std_str_format.html +++ b/group___win_std_str_format.html @@ -1150,7 +1150,7 @@ template<class _Traits1 , class _Ax1 , class _Traits2 , class _Ax2 > diff --git a/group___win_std_sys_handles.html b/group___win_std_sys_handles.html index 24a1ec2c..76a6ef56 100644 --- a/group___win_std_sys_handles.html +++ b/group___win_std_sys_handles.html @@ -195,7 +195,7 @@ static const T winstd::han diff --git a/group___win_std_w_l_a_n_a_p_i.html b/group___win_std_w_l_a_n_a_p_i.html index b1efc550..0185f023 100644 --- a/group___win_std_w_l_a_n_a_p_i.html +++ b/group___win_std_w_l_a_n_a_p_i.html @@ -201,7 +201,7 @@ template<class _Traits , class _Ax > diff --git a/group___win_std_win_a_p_i.html b/group___win_std_win_a_p_i.html index 381cfe0e..56c039dc 100644 --- a/group___win_std_win_a_p_i.html +++ b/group___win_std_win_a_p_i.html @@ -2453,7 +2453,7 @@ template<class _Ty , class _Ax > diff --git a/group___win_std_win_h_t_t_p.html b/group___win_std_win_h_t_t_p.html index b5deac69..a47985fd 100644 --- a/group___win_std_win_h_t_t_p.html +++ b/group___win_std_win_h_t_t_p.html @@ -186,7 +186,7 @@ Functions diff --git a/group___win_trust_a_p_i.html b/group___win_trust_a_p_i.html index ae33c270..1d1835ec 100644 --- a/group___win_trust_a_p_i.html +++ b/group___win_trust_a_p_i.html @@ -101,7 +101,7 @@ Classes diff --git a/hierarchy.html b/hierarchy.html index c465fcdd..0f8aa012 100644 --- a/hierarchy.html +++ b/hierarchy.html @@ -243,7 +243,7 @@ $(function(){ initResizable(false); }); diff --git a/index.html b/index.html index dfc231d3..5fc004cb 100644 --- a/index.html +++ b/index.html @@ -165,7 +165,7 @@ Usage diff --git a/md__s_e_c_u_r_i_t_y.html b/md__s_e_c_u_r_i_t_y.html index 586ff0e8..ef447fdd 100644 --- a/md__s_e_c_u_r_i_t_y.html +++ b/md__s_e_c_u_r_i_t_y.html @@ -105,7 +105,7 @@ Reporting a Vulnerability diff --git a/pages.html b/pages.html index 4fb6ddad..d58f8a5d 100644 --- a/pages.html +++ b/pages.html @@ -96,7 +96,7 @@ $(function(){ initResizable(false); }); diff --git a/pch_8h_source.html b/pch_8h_source.html index dcbfe0ac..89f5d831 100644 --- a/pch_8h_source.html +++ b/pch_8h_source.html @@ -122,7 +122,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_co_task_mem_free__delete-members.html b/structwinstd_1_1_co_task_mem_free__delete-members.html index 5334645b..8d4d2169 100644 --- a/structwinstd_1_1_co_task_mem_free__delete-members.html +++ b/structwinstd_1_1_co_task_mem_free__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_co_task_mem_free__delete.html b/structwinstd_1_1_co_task_mem_free__delete.html index 3c22f39c..dc616fec 100644 --- a/structwinstd_1_1_co_task_mem_free__delete.html +++ b/structwinstd_1_1_co_task_mem_free__delete.html @@ -151,7 +151,7 @@ template<class _T > diff --git a/structwinstd_1_1_cred_free__delete-members.html b/structwinstd_1_1_cred_free__delete-members.html index 27169d61..d07d519b 100644 --- a/structwinstd_1_1_cred_free__delete-members.html +++ b/structwinstd_1_1_cred_free__delete-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_cred_free__delete.html b/structwinstd_1_1_cred_free__delete.html index 0ae90c0c..317040d9 100644 --- a/structwinstd_1_1_cred_free__delete.html +++ b/structwinstd_1_1_cred_free__delete.html @@ -164,7 +164,7 @@ template<class _Ty > diff --git a/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4-members.html b/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4-members.html index 7cb1fd4f..52fe1b10 100644 --- a/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4-members.html +++ b/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4.html b/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4.html index ebfe795d..89cb0fc5 100644 --- a/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4.html +++ b/structwinstd_1_1_cred_free__delete_3_01___ty_0f_0e_4.html @@ -195,7 +195,7 @@ template<class _Ty > diff --git a/structwinstd_1_1_eap_host_peer_free_eap_error__delete-members.html b/structwinstd_1_1_eap_host_peer_free_eap_error__delete-members.html index 4d5cdadb..19e6ceaa 100644 --- a/structwinstd_1_1_eap_host_peer_free_eap_error__delete-members.html +++ b/structwinstd_1_1_eap_host_peer_free_eap_error__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_eap_host_peer_free_eap_error__delete.html b/structwinstd_1_1_eap_host_peer_free_eap_error__delete.html index 61bf7c75..b7b06343 100644 --- a/structwinstd_1_1_eap_host_peer_free_eap_error__delete.html +++ b/structwinstd_1_1_eap_host_peer_free_eap_error__delete.html @@ -148,7 +148,7 @@ Public Member Functions diff --git a/structwinstd_1_1_eap_host_peer_free_error_memory__delete-members.html b/structwinstd_1_1_eap_host_peer_free_error_memory__delete-members.html index fa0003f4..348f4586 100644 --- a/structwinstd_1_1_eap_host_peer_free_error_memory__delete-members.html +++ b/structwinstd_1_1_eap_host_peer_free_error_memory__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_eap_host_peer_free_error_memory__delete.html b/structwinstd_1_1_eap_host_peer_free_error_memory__delete.html index 7071816a..e74d9165 100644 --- a/structwinstd_1_1_eap_host_peer_free_error_memory__delete.html +++ b/structwinstd_1_1_eap_host_peer_free_error_memory__delete.html @@ -148,7 +148,7 @@ Public Member Functions diff --git a/structwinstd_1_1_eap_host_peer_free_memory__delete-members.html b/structwinstd_1_1_eap_host_peer_free_memory__delete-members.html index f3f15f33..f45b20d2 100644 --- a/structwinstd_1_1_eap_host_peer_free_memory__delete-members.html +++ b/structwinstd_1_1_eap_host_peer_free_memory__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_eap_host_peer_free_memory__delete.html b/structwinstd_1_1_eap_host_peer_free_memory__delete.html index f50a93b0..995f8677 100644 --- a/structwinstd_1_1_eap_host_peer_free_memory__delete.html +++ b/structwinstd_1_1_eap_host_peer_free_memory__delete.html @@ -151,7 +151,7 @@ template<class _T > diff --git a/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete-members.html b/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete-members.html index 96bd679f..625294e0 100644 --- a/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete-members.html +++ b/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete.html b/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete.html index 73cf0d4c..cf2043a2 100644 --- a/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete.html +++ b/structwinstd_1_1_eap_host_peer_free_runtime_memory__delete.html @@ -121,7 +121,7 @@ template<class _T > diff --git a/structwinstd_1_1_global_free__delete-members.html b/structwinstd_1_1_global_free__delete-members.html index a9cfa26c..8733a55b 100644 --- a/structwinstd_1_1_global_free__delete-members.html +++ b/structwinstd_1_1_global_free__delete-members.html @@ -100,7 +100,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_global_free__delete.html b/structwinstd_1_1_global_free__delete.html index 75732ea1..bf080970 100644 --- a/structwinstd_1_1_global_free__delete.html +++ b/structwinstd_1_1_global_free__delete.html @@ -148,7 +148,7 @@ Public Member Functions diff --git a/structwinstd_1_1_local_free__delete-members.html b/structwinstd_1_1_local_free__delete-members.html index 55516551..16b993a1 100644 --- a/structwinstd_1_1_local_free__delete-members.html +++ b/structwinstd_1_1_local_free__delete-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_local_free__delete.html b/structwinstd_1_1_local_free__delete.html index 2dbde7e1..94dbe12d 100644 --- a/structwinstd_1_1_local_free__delete.html +++ b/structwinstd_1_1_local_free__delete.html @@ -164,7 +164,7 @@ template<class _Ty > diff --git a/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4-members.html b/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4-members.html index 096f815f..2ab44805 100644 --- a/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4-members.html +++ b/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4.html b/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4.html index b9ac9900..df4caa10 100644 --- a/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4.html +++ b/structwinstd_1_1_local_free__delete_3_01___ty_0f_0e_4.html @@ -166,7 +166,7 @@ template<class _Other > diff --git a/structwinstd_1_1_unmap_view_of_file__delete-members.html b/structwinstd_1_1_unmap_view_of_file__delete-members.html index 86f1706e..379b1afa 100644 --- a/structwinstd_1_1_unmap_view_of_file__delete-members.html +++ b/structwinstd_1_1_unmap_view_of_file__delete-members.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_unmap_view_of_file__delete.html b/structwinstd_1_1_unmap_view_of_file__delete.html index dd3b7a9c..8d093970 100644 --- a/structwinstd_1_1_unmap_view_of_file__delete.html +++ b/structwinstd_1_1_unmap_view_of_file__delete.html @@ -116,7 +116,7 @@ void operator() (void diff --git a/structwinstd_1_1_wlan_free_memory__delete-members.html b/structwinstd_1_1_wlan_free_memory__delete-members.html index 1961310a..92c2e26f 100644 --- a/structwinstd_1_1_wlan_free_memory__delete-members.html +++ b/structwinstd_1_1_wlan_free_memory__delete-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_wlan_free_memory__delete.html b/structwinstd_1_1_wlan_free_memory__delete.html index 5d0cfc0a..6680c49a 100644 --- a/structwinstd_1_1_wlan_free_memory__delete.html +++ b/structwinstd_1_1_wlan_free_memory__delete.html @@ -134,7 +134,7 @@ struct winstd::WlanFreeMemory_delete< _Ty >

Deleter for unique_ptr

diff --git a/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4-members.html b/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4-members.html index 8f5d5d98..bcce65bf 100644 --- a/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4-members.html +++ b/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4-members.html @@ -102,7 +102,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4.html b/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4.html index 6e401993..077572b2 100644 --- a/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4.html +++ b/structwinstd_1_1_wlan_free_memory__delete_3_01___ty_0f_0e_4.html @@ -134,7 +134,7 @@ struct winstd::WlanFreeMemory_delete< _Ty[]>

Deleter for unique_pt

diff --git a/structwinstd_1_1heap__allocator_1_1rebind-members.html b/structwinstd_1_1heap__allocator_1_1rebind-members.html index ea9007bf..e5ab4962 100644 --- a/structwinstd_1_1heap__allocator_1_1rebind-members.html +++ b/structwinstd_1_1heap__allocator_1_1rebind-members.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1heap__allocator_1_1rebind.html b/structwinstd_1_1heap__allocator_1_1rebind.html index 1a07f2be..9ef95c75 100644 --- a/structwinstd_1_1heap__allocator_1_1rebind.html +++ b/structwinstd_1_1heap__allocator_1_1rebind.html @@ -118,7 +118,7 @@ struct winstd::heap_allocator< _Ty >::rebind< _Other >

A str

diff --git a/structwinstd_1_1sanitizing__allocator_1_1rebind-members.html b/structwinstd_1_1sanitizing__allocator_1_1rebind-members.html index 44e803f4..05d2efce 100644 --- a/structwinstd_1_1sanitizing__allocator_1_1rebind-members.html +++ b/structwinstd_1_1sanitizing__allocator_1_1rebind-members.html @@ -99,7 +99,7 @@ $(function(){ initResizable(false); }); diff --git a/structwinstd_1_1sanitizing__allocator_1_1rebind.html b/structwinstd_1_1sanitizing__allocator_1_1rebind.html index 9aeeec85..3fcce2de 100644 --- a/structwinstd_1_1sanitizing__allocator_1_1rebind.html +++ b/structwinstd_1_1sanitizing__allocator_1_1rebind.html @@ -118,7 +118,7 @@ struct winstd::sanitizing_allocator< _Ty >::rebind< _Other >

diff --git a/topics.html b/topics.html index 9fa002fe..fc9ab3b9 100644 --- a/topics.html +++ b/topics.html @@ -117,7 +117,7 @@ $(function(){ initResizable(false); });