diff --git a/.gitignore b/.gitignore
index a16a9e1a00c1e9299053dd0dad77045b3e321f66..b8421bc26c21af268e38dbfe951a10154896cc3d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -108,7 +108,9 @@ main
*.zip
3rd/
libs/
-
+*.filters
+*.vcxproj
+*.vcproj
#node_module
dispatch/node_modules
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000000000000000000000000000000000000..8c79bbe93ca518a65c764497f2f8337dafefcfb1
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "3rd/jerryscript"]
+ path = 3rd/jerryscript
+ url = https://gitee.com/mayben/jerryscript.git
diff --git a/3rd/jerryscript b/3rd/jerryscript
new file mode 160000
index 0000000000000000000000000000000000000000..9ff25dbc1220097b9dc04746bdf07a3b66c2e2d4
--- /dev/null
+++ b/3rd/jerryscript
@@ -0,0 +1 @@
+Subproject commit 9ff25dbc1220097b9dc04746bdf07a3b66c2e2d4
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5d6618dc30715e87566f9c95cc2df269206879d6..ad8612e89db2d5282366a571d53c4b4d95f09a02 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,6 +22,63 @@ set(dynamic "-fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexcep
set(execute "-Wall -Werror -fexceptions")
set(static "-fPIC -fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions")
+
+# C compiler
+if(CMAKE_C_COMPILER_ID MATCHES "GNU")
+ set(USING_GCC 1)
+ message("-- C:Compiler: gcc")
+endif()
+
+if(CMAKE_C_COMPILER_ID MATCHES "Clang")
+ set(USING_CLANG 1)
+ message("-- C:Compiler: clang")
+endif()
+
+if(CMAKE_C_COMPILER_ID MATCHES "AppleClang")
+ set(USING_APPLECLANG 1)
+ message("-- C:Compiler: apple_clang")
+endif()
+
+if(CMAKE_C_COMPILER_ID MATCHES "TI")
+ set(USING_TI 1)
+ message("-- C:Compiler: ti")
+endif()
+
+if(CMAKE_C_COMPILER_ID MATCHES "MSVC")
+ set(USING_MSVC 1)
+ message("-- C:Compiler: MSVC")
+endif()
+
+
+#CPP compiler
+if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
+ set(USING_GCC 1)
+ message("-- C:Compiler: g++")
+endif()
+
+if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+ set(USING_CLANG 1)
+ message("-- C:Compiler: clang")
+endif()
+
+if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang")
+ set(USING_APPLECLANG 1)
+ message("-- C:Compiler: apple_clang")
+endif()
+
+if(CMAKE_CXX_COMPILER_ID MATCHES "TI")
+ set(USING_TI 1)
+ message("-- C:Compiler: ti")
+endif()
+
+if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
+ set(USING_MSVC 1)
+ message("-- C:Compiler: MSVC")
+endif()
+
+
+
+
message("-- base-include: ${PROJECT_SOURCE_DIR}/include/")
message("-- base-include: ${by3rd_library_include}/")
message("-- base-lib: ${PROJECT_SOURCE_DIR}/libs/${CMAKE_BUILD_TYPE}/")
@@ -31,7 +88,6 @@ message("-- Compile: ${CMAKE_BUILD_TYPE}")
message("-- Compile param: ${compile}")
message("-- System: ${CMAKE_SYSTEM_NAME}")
-message("-- Compile: ${CMAKE_BUILD_TYPE}")
message("-- System_Info_file: ${CMAKE_SYSTEM_INFO_FILE}")
message("-- System_Processor: ${CMAKE_SYSTEM_PROCESSOR}")
message("-- Host_System_Processor: ${CMAKE_HOST_SYSTEM_PROCESSOR}")
diff --git a/asynio/AsynIo.vcxproj.filters b/asynio/AsynIo.vcxproj.filters
deleted file mode 100644
index 17c2e4125acad2cef77bec40fe62498c4fbf6c86..0000000000000000000000000000000000000000
--- a/asynio/AsynIo.vcxproj.filters
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/asynio/udpsocketimpl.h b/asynio/udpsocketimpl.h
index a31a9c4d95d205569632a206c8e8bf66f13b1ca3..56edb05d0ecc56550dd3a230a0496c6ce6862614 100644
--- a/asynio/udpsocketimpl.h
+++ b/asynio/udpsocketimpl.h
@@ -3,9 +3,9 @@
#include "stdafx.h"
-class CUdpSocketImpl : public IUdpSocket,
- public CUnknownImp,
- public IoDgramBase
+class CUdpSocketImpl : public IUdpSocket,
+ public CUnknownImp,
+ public IoDgramBase
{
public:
CUdpSocketImpl(void);
diff --git a/container/mainrun.cpp b/container/mainrun.cpp
index 6b9fc3855e6bfd34a516404417761889e3c39b56..e2e48b11310d7484823338d2f421a03d2b38c764 100644
--- a/container/mainrun.cpp
+++ b/container/mainrun.cpp
@@ -136,7 +136,7 @@ std_method_impl CMainRun::GetObjectLoader(IBase** Base)
return m_pRot->GetObject(CLSID_CObjectLoader, IID_ICompoentLoader, (IBase**)Base);
}
-std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component)
+std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)
{
HRESULT hr = S_OK;
@@ -150,22 +150,27 @@ std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase,
rc_assert(hr == S_OK, E_FAIL)
rc_assert(pPlugin.m_p != NULL, E_FAIL)
- hr = pPlugin->Init(m_argc, m_argv, m_pRot, NULL);
- rc_assert(hr == S_OK, E_FAIL)
- hr = RunPlugin_Start(m_hInstance, &pObject, 0);
- rc_assert(hr == S_OK, E_FAIL)
+ if(type & STD_INIT)
+ hr = pPlugin->Init(m_argc, m_argv, m_pRot, NULL);
- hr = m_pRot->Register(clsid, progId, pBase, Id);
- rc_assert(hr == S_OK, E_FAIL)
-
- m_PluginsDynamicClsid.push_back(Com_Plugin(clsid, Id, Component));
+ if (type & STD_START)
+ hr = RunPlugin_Start(m_hInstance, &pObject, 0);
+
+ if (type & STD_ROT)
+ hr = m_pRot->Register(clsid, progId, pBase, Id);
+
+ if (type & STD_VEC)
+ m_PluginsDynamicClsid.push_back(Com_Plugin(clsid, Id, Component));
+
+ if (type & STD_SEQ_VEC)
+ m_PluginsClsid.push_back(Com_Plugin(clsid, Id, Component));
return S_OK;
}
-std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component)
+std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)
{
return E_NOTIMPL;
}
@@ -180,15 +185,20 @@ std_method_type_impl(ULONG) CMainRun::GetRunPluginsCount()
return m_PluginsClsid.size();
}
-std_method_type_impl(int) CMainRun::GetArgc()
+std_method_type_impl(int) CMainRun::GetArgc()
{
return m_argc;
}
std_method_type_impl(basic_tchar*) CMainRun::GetIndexArgv(int index)
{
+ rc_assert(((index >= 0) && (index < m_argc)), NULL)
return m_argv[index];
}
-
+std_method_type_impl(ULONG) CMainRun::GetRunIndex(ULONG index)
+{
+ rc_assert(((index >= 0) && (index < m_PluginsClsid.size())), 0)
+ return m_PluginsClsid[index].uIndex;
+}
std_method_type_impl(UINT) CMainRun::GetExitCode()
{
return GetIExitCode(m_RunPlugin);
@@ -432,7 +442,7 @@ std_method_impl CMainRun::DestroyAllRotPlugin()
Size = m_PluginsDynamicClsid.size();
//dynamic plugin
- for (uloop = 0; uloop < m_PluginsDynamicClsid.size(); uloop++)
+ for (uloop = 0; uloop < Size; uloop++)
{
ULONG index = Size - uloop - 1;
rc_assert_continue(((index >= 0) && (index < Size)))
@@ -493,6 +503,7 @@ std_method_impl CMainRun::DoPluginsStartFunc(int iArgc, basic_tchar* Argv[], UIN
m_RunPlugin = m_PluginsClsid[uloop].ClsId;
+ logi("run plugin==>%s==>%s\n",m_PluginsClsid[uloop].szComponent.c_str(), guid);
RunPlugin_Start(m_hInstance, &pUnknown, uType);
}
return hr;
diff --git a/container/mainrun.h b/container/mainrun.h
index 6a9c8f89ac33d2a343e01cc1438bd4dad27a266a..7fdb8cfc521e2924d197ed11b61ed31e76f66825 100644
--- a/container/mainrun.h
+++ b/container/mainrun.h
@@ -31,12 +31,13 @@ public:
std_method(Clear)();
std_method(GetRot)(IBase** Base);
std_method(GetObjectLoader)(IBase** Base);
- std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component);
- std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component);
+ std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type);
+ std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type);
std_method_(CLSID, GetRunPluginCLSID)();
std_method_(ULONG, GetRunPluginsCount)();
std_method_(int, GetArgc)();
std_method_(basic_tchar*, GetIndexArgv)(int index);
+ std_method_(ULONG, GetRunIndex)(ULONG index);
std_method_(UINT, GetExitCode)();
private:
diff --git a/container/rot.cpp b/container/rot.cpp
index fb3f8812402893ec9ee67c5fa174a3144d452231..73a590d67ae4518118b7e51bb4882db2a7a2a37e 100644
--- a/container/rot.cpp
+++ b/container/rot.cpp
@@ -91,7 +91,7 @@ std_method_type_impl(CLSID) CComRunningObjectTableImpl::CLSIDFromProgID(LPCSTR l
return pICompoentLoader->CLSIDFromProgID(lpProgId);
}
-std_method_type_impl(UINT) CComRunningObjectTableImpl::GetObjectCount()
+std_method_type_impl(ULONG) CComRunningObjectTableImpl::GetObjectCount()
{
SYNC_OBJ(&m_lockSection)
return m_map.size();
diff --git a/container/rot.h b/container/rot.h
index 0ed33a8dc2672e32c0be01c54587e2f52880234f..f708dce2b77117d7ea3e5681a1272d85d0f47092 100644
--- a/container/rot.h
+++ b/container/rot.h
@@ -4,7 +4,7 @@
#include "stdafx.h"
class CComRunningObjectTableImpl : public IComRotMessage,
- public CUnknownImp
+ public CUnknownImp
{
public:
CComRunningObjectTableImpl(void);
@@ -27,7 +27,7 @@ public:
std_method(RevokeAll)();
std_method_(LPCSTR, ProgIDFromCLSID)(REFCLSID clsid);
std_method_(CLSID, CLSIDFromProgID)(LPCSTR lpProgId);
- std_method_(UINT, GetObjectCount)();
+ std_method_(ULONG, GetObjectCount)();
// IComRotMessage:
std_method(CreateMessage)(IBase** pMsg);
diff --git a/container/stdafx.h b/container/stdafx.h
index f41fd8a772e485a8ce032f69e195e15c6016dfa4..107b6d11d0f8bcd45c3917d19b7c54965a7f4bbc 100644
--- a/container/stdafx.h
+++ b/container/stdafx.h
@@ -58,7 +58,7 @@ class Com_Plugin
{
public:
CLSID ClsId;
- DWORD uIndex;
+ ULONG uIndex;
string szComponent;
~Com_Plugin()
{
@@ -68,7 +68,7 @@ public:
Com_Plugin(
CLSID id,
- DWORD index,
+ ULONG index,
const char* Component)
{
diff --git a/extensions/include/platform/services/license.hpp b/extensions/include/platform/services/license.hpp
index 8894e2c84e8290e099a1d034fc36952ccebea7ff..f87fe37b7c9f4273cc2f422531cf63a19cc1734a 100644
--- a/extensions/include/platform/services/license.hpp
+++ b/extensions/include/platform/services/license.hpp
@@ -24,7 +24,7 @@ public:
};
return s_FunDefs;
}
- virtual bool SetFuncAddress(int i, void *p)
+ virtual bool SetFuncAddress(size_t i, void *p)
{
switch (i)
{
diff --git a/framwork.xcodeproj/project.pbxproj b/framwork.xcodeproj/project.pbxproj
index f1ac8664a370e1f6839d5a00844aa06b2b6cfff2..1b23f54ce5349bd78e0e98054844f8357afeb0d2 100644
--- a/framwork.xcodeproj/project.pbxproj
+++ b/framwork.xcodeproj/project.pbxproj
@@ -1102,6 +1102,36 @@
A17163EF271DCD190062A998 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; };
A17163F0271DCD190062A998 /* dbimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbimpl.h; sourceTree = ""; };
A17163F1271DCD190062A998 /* stringutil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutil.cpp; sourceTree = ""; };
+ A1EB047827285B0600214133 /* iuiwindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuiwindow.h; sourceTree = ""; };
+ A1EB047927285B0600214133 /* irender.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = irender.h; sourceTree = ""; };
+ A1EB047A27285B0600214133 /* uidefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = uidefine.h; sourceTree = ""; };
+ A1EB047B27285B0600214133 /* iuibase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuibase.h; sourceTree = ""; };
+ A1EB047C27285B0600214133 /* ifont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ifont.h; sourceTree = ""; };
+ A1EB047D27285B0600214133 /* iuicontrol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuicontrol.h; sourceTree = ""; };
+ A1EB047E27285B0600214133 /* ilang.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilang.h; sourceTree = ""; };
+ A1EB048027285B0600214133 /* ihttp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ihttp.h; sourceTree = ""; };
+ A1EB048127285B0600214133 /* inet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inet.h; sourceTree = ""; };
+ A1EB048227285B0600214133 /* iwebsocket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iwebsocket.h; sourceTree = ""; };
+ A1EB048327285B0600214133 /* idns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = idns.h; sourceTree = ""; };
+ A1EB048427285B0600214133 /* issh.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = issh.h; sourceTree = ""; };
+ A1EB048727285B0600214133 /* license.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = license.h; sourceTree = ""; };
+ A1EB048927285B0600214133 /* license.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = license.hpp; sourceTree = ""; };
+ A1EB048B27285B0600214133 /* itimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = itimer.h; sourceTree = ""; };
+ A1EB048C27285B0600214133 /* isocket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = isocket.h; sourceTree = ""; };
+ A1EB048D27285B0600214133 /* ifile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ifile.h; sourceTree = ""; };
+ A1EB048E27285B0600214133 /* iiodevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iiodevice.h; sourceTree = ""; };
+ A1EB048F27285B0600214133 /* ioperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ioperation.h; sourceTree = ""; };
+ A1EB049027285B0600214133 /* iframe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iframe.h; sourceTree = ""; };
+ A1EB049227285B0600214133 /* idatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = idatabase.h; sourceTree = ""; };
+ A1EB049427285B0600214133 /* ilogs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogs.h; sourceTree = ""; };
+ A1EB049527285B0600214133 /* ilogfilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogfilter.h; sourceTree = ""; };
+ A1EB049627285B0600214133 /* ilogdatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogdatabase.h; sourceTree = ""; };
+ A1EB049827285B0600214133 /* imsgbus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imsgbus.h; sourceTree = ""; };
+ A1EB049927285B0600214133 /* isession.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = isession.h; sourceTree = ""; };
+ A1EB049A27285B0600214133 /* imsg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imsg.h; sourceTree = ""; };
+ A1EB049C27285B0600214133 /* iyangcontext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iyangcontext.h; sourceTree = ""; };
+ A1EB049D27285B0600214133 /* iparser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iparser.h; sourceTree = ""; };
+ A1EB049F27285B0600214133 /* imempool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imempool.h; sourceTree = ""; };
A1F6DB5D27284749002BF005 /* httptimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httptimpl.h; sourceTree = ""; };
A1F6DB5E27284749002BF005 /* httptimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httptimpl.cpp; sourceTree = ""; };
A1F6DB6027284749002BF005 /* http_header.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = http_header.hpp; sourceTree = ""; };
@@ -1537,6 +1567,7 @@
A10FFAA426F8417900A4D864 = {
isa = PBXGroup;
children = (
+ A1EB047527285B0600214133 /* extensions */,
A144AB09272572DF0019CA5F /* crt */,
A11694A02713154700CBA348 /* include */,
A11694742713144500CBA348 /* container */,
@@ -1843,6 +1874,139 @@
path = code;
sourceTree = "";
};
+ A1EB047527285B0600214133 /* extensions */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB047627285B0600214133 /* include */,
+ );
+ path = extensions;
+ sourceTree = "";
+ };
+ A1EB047627285B0600214133 /* include */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB047727285B0600214133 /* ui */,
+ A1EB047F27285B0600214133 /* net */,
+ A1EB048527285B0600214133 /* platform */,
+ A1EB048A27285B0600214133 /* io */,
+ A1EB049127285B0600214133 /* db */,
+ A1EB049327285B0600214133 /* log */,
+ A1EB049727285B0600214133 /* msgbus */,
+ A1EB049B27285B0600214133 /* data */,
+ A1EB049E27285B0600214133 /* mem */,
+ );
+ path = include;
+ sourceTree = "";
+ };
+ A1EB047727285B0600214133 /* ui */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB047827285B0600214133 /* iuiwindow.h */,
+ A1EB047927285B0600214133 /* irender.h */,
+ A1EB047A27285B0600214133 /* uidefine.h */,
+ A1EB047B27285B0600214133 /* iuibase.h */,
+ A1EB047C27285B0600214133 /* ifont.h */,
+ A1EB047D27285B0600214133 /* iuicontrol.h */,
+ A1EB047E27285B0600214133 /* ilang.h */,
+ );
+ path = ui;
+ sourceTree = "";
+ };
+ A1EB047F27285B0600214133 /* net */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB048027285B0600214133 /* ihttp.h */,
+ A1EB048127285B0600214133 /* inet.h */,
+ A1EB048227285B0600214133 /* iwebsocket.h */,
+ A1EB048327285B0600214133 /* idns.h */,
+ A1EB048427285B0600214133 /* issh.h */,
+ );
+ path = net;
+ sourceTree = "";
+ };
+ A1EB048527285B0600214133 /* platform */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB048627285B0600214133 /* core */,
+ A1EB048827285B0600214133 /* services */,
+ );
+ path = platform;
+ sourceTree = "";
+ };
+ A1EB048627285B0600214133 /* core */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB048727285B0600214133 /* license.h */,
+ );
+ path = core;
+ sourceTree = "";
+ };
+ A1EB048827285B0600214133 /* services */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB048927285B0600214133 /* license.hpp */,
+ );
+ path = services;
+ sourceTree = "";
+ };
+ A1EB048A27285B0600214133 /* io */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB048B27285B0600214133 /* itimer.h */,
+ A1EB048C27285B0600214133 /* isocket.h */,
+ A1EB048D27285B0600214133 /* ifile.h */,
+ A1EB048E27285B0600214133 /* iiodevice.h */,
+ A1EB048F27285B0600214133 /* ioperation.h */,
+ A1EB049027285B0600214133 /* iframe.h */,
+ );
+ path = io;
+ sourceTree = "";
+ };
+ A1EB049127285B0600214133 /* db */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB049227285B0600214133 /* idatabase.h */,
+ );
+ path = db;
+ sourceTree = "";
+ };
+ A1EB049327285B0600214133 /* log */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB049427285B0600214133 /* ilogs.h */,
+ A1EB049527285B0600214133 /* ilogfilter.h */,
+ A1EB049627285B0600214133 /* ilogdatabase.h */,
+ );
+ path = log;
+ sourceTree = "";
+ };
+ A1EB049727285B0600214133 /* msgbus */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB049827285B0600214133 /* imsgbus.h */,
+ A1EB049927285B0600214133 /* isession.h */,
+ A1EB049A27285B0600214133 /* imsg.h */,
+ );
+ path = msgbus;
+ sourceTree = "";
+ };
+ A1EB049B27285B0600214133 /* data */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB049C27285B0600214133 /* iyangcontext.h */,
+ A1EB049D27285B0600214133 /* iparser.h */,
+ );
+ path = data;
+ sourceTree = "";
+ };
+ A1EB049E27285B0600214133 /* mem */ = {
+ isa = PBXGroup;
+ children = (
+ A1EB049F27285B0600214133 /* imempool.h */,
+ );
+ path = mem;
+ sourceTree = "";
+ };
A1F1D55F27117AE800442CFE /* Frameworks */ = {
isa = PBXGroup;
children = (
@@ -3666,8 +3830,10 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CLANG_CXX_LIBRARY = "libc++";
CODE_SIGN_ENTITLEMENTS = mainui/mainui.entitlements;
+ CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
+ DEVELOPMENT_TEAM = HQK3787VUQ;
GCC_C_LANGUAGE_STANDARD = gnu11;
HEADER_SEARCH_PATHS = (
extensions/include,
@@ -3693,8 +3859,10 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CLANG_CXX_LIBRARY = "libc++";
CODE_SIGN_ENTITLEMENTS = mainui/mainui.entitlements;
+ CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
+ DEVELOPMENT_TEAM = HQK3787VUQ;
GCC_C_LANGUAGE_STANDARD = gnu11;
HEADER_SEARCH_PATHS = (
extensions/include,
diff --git a/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate
index c464abf113fad8d16e774e773edee7802eda89a3..0d946108ce41dc9838c2a1537053866327a52836 100644
Binary files a/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate and b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate differ
diff --git a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
index 3f2efcd494ca2539b3b189b3571e2f7f8b372c35..f43a0da5c1454221e58492d97462afd39113e44a 100644
--- a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
+++ b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
@@ -103,16 +103,32 @@
+
+
+
+
diff --git a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist
index 36edafbaf43f5e41d95f854b02dc0d4d5d9025be..c19cad407042f2ec7aa51a3436a770b677fef967 100644
--- a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist
+++ b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist
@@ -7,7 +7,7 @@
access.xcscheme_^#shared#^_
orderHint
- 12
+ 14
asynio.xcscheme_^#shared#^_
@@ -22,17 +22,17 @@
guidgen.xcscheme_^#shared#^_
orderHint
- 14
+ 12
license.xcscheme_^#shared#^_
orderHint
- 10
+ 9
logs.xcscheme_^#shared#^_
orderHint
- 11
+ 7
mainui.xcscheme_^#shared#^_
@@ -47,12 +47,12 @@
mainview.xcscheme_^#shared#^_
orderHint
- 8
+ 11
mempool.xcscheme_^#shared#^_
orderHint
- 15
+ 6
msgbus.xcscheme_^#shared#^_
@@ -62,7 +62,7 @@
net.xcscheme_^#shared#^_
orderHint
- 6
+ 8
render.xcscheme_^#shared#^_
@@ -72,7 +72,7 @@
res.xcscheme_^#shared#^_
orderHint
- 7
+ 10
std_com.xcscheme_^#shared#^_
diff --git a/include/dlcom/icombase.h b/include/dlcom/icombase.h
index 2daa5150ccd564cb8a1610dbf2bc9ce4cf0d4c57..0a7a88423b9cb1780e20fd928a6596397f871c9d 100644
--- a/include/dlcom/icombase.h
+++ b/include/dlcom/icombase.h
@@ -43,7 +43,7 @@ interface IComRunningObjectTable : public IBase
std_method(RevokeAll)() PURE;
std_method_(LPCSTR, ProgIDFromCLSID)(REFCLSID clsid) PURE;
std_method_(CLSID, CLSIDFromProgID)(LPCSTR lpProgId) PURE;
- std_method_(UINT, GetObjectCount)() PURE;
+ std_method_(ULONG, GetObjectCount)() PURE;
};
// {08F56552-D015-4C3B-B984-2211A4F880FF}
@@ -89,6 +89,17 @@ interface IExit : public IBase
_DEFINE_IID(IID_IExit,
0x70b0d10b, 0x463f, 0x496a, 0x90, 0xa5, 0xf2, 0x21, 0x75, 0xf7, 0x7a, 0x1d);
+#define STD_INIT 0x01
+#define STD_START 0x02
+
+#define STD_VEC 0x10
+#define STD_SEQ_VEC 0x20
+
+#define STD_ROT 0x80
+
+#define STD_COMPOENT (STD_SEQ_VEC|STD_ROT)
+#define ROT_COMPOENT (STD_ROT)
+#define DYN_COMPOENT (STD_VEC|STD_ROT)
interface IObjectRun : public IBase
{
@@ -105,12 +116,13 @@ interface IObjectRun : public IBase
std_method(Clear)() PURE;
std_method(GetRot)(IBase** Base) PURE;
std_method(GetObjectLoader)(IBase** Base) PURE;
- std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) PURE;
- std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) PURE;
+ std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) PURE;
+ std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) PURE;
std_method_(CLSID, GetRunPluginCLSID)() PURE;
std_method_(ULONG, GetRunPluginsCount)() PURE;
std_method_(int, GetArgc)() PURE;
std_method_(basic_tchar*, GetIndexArgv)(int index) PURE;
+ std_method_(ULONG, GetRunIndex)(ULONG index) PURE;
std_method_(UINT, GetExitCode)() PURE;
};
diff --git a/include/dlcom/loadcom.hpp b/include/dlcom/loadcom.hpp
index 137b9d97ea985d5365be9d1d1ddafe5a9b728726..e93a7210e4f029da3def7af76acc9008ea39e848 100644
--- a/include/dlcom/loadcom.hpp
+++ b/include/dlcom/loadcom.hpp
@@ -39,7 +39,7 @@ public:
};
return s_FunDefs;
}
- virtual bool SetFuncAddress(int i,void *p)
+ virtual bool SetFuncAddress(size_t i,void *p)
{
switch(i)
{
diff --git a/include/dlcom/objectrun.hpp b/include/dlcom/objectrun.hpp
index 07542bee27247473a9e346f3f78a7429db31ef6c..6cfc13089026d02b489b42ae501fdac5d9c90923 100644
--- a/include/dlcom/objectrun.hpp
+++ b/include/dlcom/objectrun.hpp
@@ -78,25 +78,13 @@ public:
return m_pIObjectRun->Stop(instance, type, exit);
}
- HRESULT RegisterRunningObjectTable(REFCLSID clsid, LPCSTR progId, IBase *pBase, unsigned int id) {
-
- rc_assert(m_pIObjectRun != NULL, E_FAIL)
- rc_assert(progId != NULL, E_FAIL)
- rc_assert(pBase != NULL, E_FAIL)
-
- _lComPtr pRot;
- m_pIObjectRun->GetRot((IBase**)&pRot);
- rc_assert(pRot.m_p != NULL, E_FAIL)
-
- return pRot->Register(clsid, progId, pBase, id);
- }
-
- HRESULT RegisterComponent(REFCLSID clsid, LPCSTR progId, IBase* pBase, ULONG Id, LPCSTR Component) {
+ HRESULT RegisterComponent(REFCLSID clsid, LPCSTR progId, IBase* pBase, ULONG Id, LPCSTR Component, UINT type) {
rc_assert(m_pIObjectRun != NULL, E_FAIL)
rc_assert(progId != NULL, E_FAIL)
rc_assert(pBase != NULL, E_FAIL)
- return m_pIObjectRun->AddObject(clsid, progId, pBase, Id, Component);
+
+ return m_pIObjectRun->AddObject(clsid, progId, pBase, Id, Component, type);
}
HRESULT RunContainer(_pinstance instance, basic_tchar* argv[], int argc, UINT type) {
@@ -128,9 +116,21 @@ public:
return m_pIObjectRun->GetExitCode();
}
+ ULONG GetStartIndex(ULONG index) {
+
+ rc_assert(m_pIObjectRun != NULL, OBJECT_RUN_RET_ERROR)
+ return m_pIObjectRun->GetRunIndex(index);
+ }
+
+ ULONG GetCompentCount() {
+
+ rc_assert(m_pIObjectRun != NULL, OBJECT_RUN_RET_ERROR)
+ return m_pIObjectRun->GetRunPluginsCount();
+ }
+
private:
- CComLoader m_loader;
+ CComLoader m_loader;
basic_tstring m_strContainer;
_lComPtr m_pIObjectRun;
};
diff --git a/include/utilex/calldll.hpp b/include/utilex/calldll.hpp
index 7f5cd4e759896b48b6b4e9fa5bd678f1e1ab41e8..923fa12e834d7380f93039dc7ab8cc75f0d3a1ea 100644
--- a/include/utilex/calldll.hpp
+++ b/include/utilex/calldll.hpp
@@ -70,7 +70,7 @@ public:
return true;
}
virtual STFunDesc *GetFunDefs() = 0;
- virtual bool SetFuncAddress(int i,void *p) = 0;
+ virtual bool SetFuncAddress(size_t i,void *p) = 0;
};
diff --git a/mainui/Info.plist b/mainui/Info.plist
index cfbbdb70c466bc832de80d36dd1ec1d50f43081c..78d9cb161d01111b036a44f7e431a592b07fe778 100644
--- a/mainui/Info.plist
+++ b/mainui/Info.plist
@@ -26,5 +26,10 @@
Main
NSPrincipalClass
NSApplication
+ NSAppTransportSecurity
+
+ NSAllowsArbitraryLoads
+
+
diff --git a/mainui/appviewimpl.cpp b/mainui/appviewimpl.cpp
index a36e38311f0ac443ed711db1cd7e9398a68e40f9..ba50894c219511319f23d2c8b0f7a2d3921c30c4 100644
--- a/mainui/appviewimpl.cpp
+++ b/mainui/appviewimpl.cpp
@@ -1,4 +1,6 @@
#include "appviewimpl.h"
+#include
+
CAppViewImpl::CAppViewImpl(void)
{
@@ -25,6 +27,20 @@ std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType)
{
HRESULT hr = S_OK;
+ _lComPtr pINet;
+
+
+ m_pRot->GetObject(CLSID_INet, IID_INet, (IBase**)&pINet.m_p);
+ rc_assert(pINet.m_p != INULL, E_FAIL)
+
+ _lComPtr pIDns;
+ pINet->CreateProtocol(Protocol_dns, (IBase**)&pIDns);
+
+ pIDns->Send("www.baidu.com", NULL);
+
+ pIDns->Close();
+
+
return hr;
}
std_method_impl CAppViewImpl::Stop(UINT uExitCode)
diff --git a/mainui/main.mm b/mainui/main.mm
index bb6128520b2016f9f244ad6c865d8c43a773a12e..65bb9b2e18d3d1909debefd2f31a8fae7a322577 100644
--- a/mainui/main.mm
+++ b/mainui/main.mm
@@ -24,37 +24,52 @@ int RunContainer(int argc, const char * argv[], const char* path) {
HRESULT hr = S_OK;
- CContainer com;
const char* pCode = "{\"component\":[ \
- \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\
- \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:3:4\",\
- \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\
- \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\
- \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:6:4\",\
- \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:2:4\" \
- ]}";
-
+ \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\
+ \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:2:4\",\
+ \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:10:4\" \
+ ]}";
+
+ /*
+
+ \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\
+ \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\
+ \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:10:4\",\
+ */
+
+ /*
+ \"{51FA8DE1-216F-4A76-B4F4-B986E9F54C27}:mainview:100:4\",\
+ \"{CE065148-7803-45B1-B1D7-874B52B8F5C5}:uibase:10:4\",\
+ */
+
+ CContainer com;
+
logi("test_main_CreateContainer");
hr = com.CreateContainer(container_framework_path.c_str(), container_framework_path.length());
logi("test_main_RegisterContainer");
hr = com.RegisterContainer(pCode, s_strlen(pCode));
-
+
logi("test_main_InitContainer");
hr = com.InitContainer(hInstance, (char**)argv, argc);
+ ULONG count = com.GetCompentCount();
+ ULONG Index = com.GetStartIndex(count - 1);
+
CAppViewImpl *app = ALLOC_NEW CAppViewImpl();
_lComPtr pBase;
- app->QueryInterface(IID_IBase, (void**)&pBase);
- hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, 0, "main.exe");
+ hr = app->QueryInterface(IID_IBase, (void**)&pBase);
+
+
+ if (hr == S_OK) {
+ hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, Index - 1, "main.exe", STD_COMPOENT | STD_INIT);
+ }
logi("test_main_RunContainer");
hr = com.RunContainer(hInstance, (char**)argv, argc, 0);
logi("test_main_InitContainer");
hr = com.UnInitContainer(hInstance);
-
- logi("test_main_DestroyContainer");
return S_SUCCESS;
}
diff --git a/mainui/mainui.entitlements b/mainui/mainui.entitlements
index f2ef3ae0265b40c475e8ef90e3a311c31786c594..3203b1c2fd050e0e4739eeddc7b2f4a8db04c5ed 100644
--- a/mainui/mainui.entitlements
+++ b/mainui/mainui.entitlements
@@ -2,9 +2,15 @@
- com.apple.security.app-sandbox
-
- com.apple.security.files.user-selected.read-only
-
+ com.apple.security.app-sandbox
+
+ com.apple.security.files.downloads.read-only
+
+ com.apple.security.files.user-selected.read-only
+
+ com.apple.security.network.client
+
+ com.apple.security.network.server
+
diff --git a/mainuiapp/Info.plist b/mainuiapp/Info.plist
index 1df2ab9cb10410584fee3097435c4b304e7bf0ba..b0a0984a4c8e40083fed8adc2d57d1c5c8a278b5 100644
--- a/mainuiapp/Info.plist
+++ b/mainuiapp/Info.plist
@@ -20,6 +20,11 @@
1
LSRequiresIPhoneOS
+ NSAppTransportSecurity
+
+ NSAllowsArbitraryLoads
+
+
UIApplicationSceneManifest
UIApplicationSupportsMultipleScenes
@@ -49,6 +54,8 @@
armv7
+ UIStatusBarHidden
+
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
diff --git a/mainuiapp/appviewimpl.cpp b/mainuiapp/appviewimpl.cpp
index a36e38311f0ac443ed711db1cd7e9398a68e40f9..ba50894c219511319f23d2c8b0f7a2d3921c30c4 100644
--- a/mainuiapp/appviewimpl.cpp
+++ b/mainuiapp/appviewimpl.cpp
@@ -1,4 +1,6 @@
#include "appviewimpl.h"
+#include
+
CAppViewImpl::CAppViewImpl(void)
{
@@ -25,6 +27,20 @@ std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType)
{
HRESULT hr = S_OK;
+ _lComPtr pINet;
+
+
+ m_pRot->GetObject(CLSID_INet, IID_INet, (IBase**)&pINet.m_p);
+ rc_assert(pINet.m_p != INULL, E_FAIL)
+
+ _lComPtr pIDns;
+ pINet->CreateProtocol(Protocol_dns, (IBase**)&pIDns);
+
+ pIDns->Send("www.baidu.com", NULL);
+
+ pIDns->Close();
+
+
return hr;
}
std_method_impl CAppViewImpl::Stop(UINT uExitCode)
diff --git a/mainuiapp/main.mm b/mainuiapp/main.mm
index 56f502e33c528f49707985e754bc3024c9a54f0b..327846a19a5fe7ac03ba186ccbdc8ee19fc3d712 100644
--- a/mainuiapp/main.mm
+++ b/mainuiapp/main.mm
@@ -33,37 +33,48 @@ int RunContainer(int argc, char * argv[], const char* path) {
HRESULT hr = S_OK;
- CContainer com;
const char* pCode = "{\"component\":[ \
- \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\
- \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:3:4\",\
+ \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\
+ \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:2:4\",\
+ \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:10:4\" \
+ ]}";
+
+ /*
\"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\
\"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\
- \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:6:4\",\
- \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:2:4\" \
- ]}";
-
+ \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:10:4\",\
+ \"{51FA8DE1-216F-4A76-B4F4-B986E9F54C27}:mainview:100:4\",\
+ \"{CE065148-7803-45B1-B1D7-874B52B8F5C5}:uibase:10:4\",\
+ */
+
+ CContainer com;
+
logi("test_main_CreateContainer");
hr = com.CreateContainer(container_framework_path.c_str(), container_framework_path.length());
logi("test_main_RegisterContainer");
hr = com.RegisterContainer(pCode, s_strlen(pCode));
-
+
logi("test_main_InitContainer");
- hr = com.InitContainer(hInstance, (char**)argv, argc);
+ hr = com.InitContainer(hInstance, argv, argc);
+
+ ULONG count = com.GetCompentCount();
+ ULONG Index = com.GetStartIndex(count - 1);
CAppViewImpl *app = ALLOC_NEW CAppViewImpl();
_lComPtr pBase;
- app->QueryInterface(IID_IBase, (void**)&pBase);
- hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, 0, "main.exe");
+ hr = app->QueryInterface(IID_IBase, (void**)&pBase);
+
+
+ if (hr == S_OK) {
+ hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, Index - 1, "main.exe", STD_COMPOENT | STD_INIT);
+ }
logi("test_main_RunContainer");
- hr = com.RunContainer(hInstance, (char**)argv, argc, 0);
+ hr = com.RunContainer(hInstance, argv, argc, 0);
logi("test_main_InitContainer");
hr = com.UnInitContainer(hInstance);
-
- logi("test_main_DestroyContainer");
return S_SUCCESS;
}
diff --git a/mainview/mainviewimpl.h b/mainview/mainviewimpl.h
index 51d484ed757af7878122cd09d277cbfad5aa1400..a42edb5087970c0b2be99273dbba108a3e1878dc 100644
--- a/mainview/mainviewimpl.h
+++ b/mainview/mainviewimpl.h
@@ -4,7 +4,7 @@
#include "stdafx.h"
-class CMainViewImpl : public IPlugin,
+class CMainViewImpl : public IPlugin,
public IPluginRun,
public IMsgPlugin,
public IUIEvent,
@@ -54,16 +54,17 @@ private:
_lComPtr m_pIBroker;
_lComPtr m_pIConsumer;
- _lComPtr m_pIProducer;
+ _lComPtr m_pIProducer;
_lComPtr m_pIAgent;
_lComPtr m_pIUiBase;
- _lComPtr m_pIUiWindow;
+ _lComPtr m_pIUiWindow;
_lComPtr m_pIUiMessageLoop;
- _lComPtr m_pILogs;
+ _lComPtr m_pILogs;
+ _lComPtr m_pIHttp_t;
private:
- CSemHandle m_wait_sem;
+ CSemHandle m_wait_sem;
};
#endif
diff --git a/mainview/stdafx.h b/mainview/stdafx.h
index ad22aaf41188e71d3f11ada105667b055ec95924..5dbcc96fac939fa212b8e788c0dd5da8f04f3d2a 100644
--- a/mainview/stdafx.h
+++ b/mainview/stdafx.h
@@ -9,6 +9,8 @@
#include
#include
#include
+#include
+
#include
#include
diff --git a/net/netimpl.cpp b/net/netimpl.cpp
index 7d96ccc76a79732228302f5ff26eecb7e9898c90..d50c2743a408e343ce495ad9a99aee7b6f95f68f 100644
--- a/net/netimpl.cpp
+++ b/net/netimpl.cpp
@@ -28,9 +28,9 @@ std_method_impl CNetImpl::Start(_pinstance hInstance, UINT uType)
InitSocketEnv(2, 2);
- hr = m_pRot->GetObject(CLSID_IAsynFrame, IID_IAsynFrame, (IBase**)&m_pIAsynFrame);
- rc_assert(hr == S_OK, E_FAIL)
- rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL)
+ hr = m_pRot->GetObject(CLSID_IAsynFrame, IID_IAsynFrame, (IBase**)&m_pIAsynFrame);
+ rc_assert(hr == S_OK, E_FAIL)
+ rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL)
return hr;
}
diff --git a/tags b/tags
index df253e27a4413fce8b84e9ff9b39bdc2fb923dc5..8c98a741b106fd23b93a964492c849146ceef91b 100644
--- a/tags
+++ b/tags
@@ -4,7 +4,7 @@
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.6 //
-$TODO compat/compat_debug.hpp 17;" d
+$TODO crt/crt_debug.hpp 17;" d
-info-dir polipo/Makefile /^ install-info --info-dir=$(TARGET)$(INFODIR) polipo.info$/;" m
3rdcompile 3rd/make3rdcompile.sh /^function 3rdcompile() {$/;" f
A polipo/http_parse.c 112;" d file:
@@ -26,80 +26,20 @@ ALWAYS logs/sqlite3.c 123845;" d file:
ALWAYS logs/sqlite3.c 7916;" d file:
ALWAYS logs/sqlite3.c 7919;" d file:
ALWAYS logs/sqlite3.c 7922;" d file:
-APIENTRY compat/darwinosdef.h 43;" d
-APIENTRY compat/darwinosdef.h 65;" d
-APIENTRY compat/posixosdef.h 32;" d
-APIPRIVATE compat/darwinosdef.h 44;" d
-APIPRIVATE compat/darwinosdef.h 71;" d
-APIPRIVATE compat/posixosdef.h 33;" d
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 447;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 450;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 453;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 456;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 460;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 462;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 464;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 468;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 471;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 474;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 479;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 482;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 485;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 490;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 493;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 496;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 499;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 502;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 505;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 508;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 511;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 514;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 517;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 522;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 525;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 528;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 531;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 534;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 537;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 540;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 432;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 435;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 438;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 441;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 445;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 447;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 449;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 453;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 456;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 459;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 464;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 467;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 470;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 475;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 478;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 481;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 484;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 487;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 490;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 493;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 496;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 499;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 502;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 507;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 510;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 513;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 516;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 519;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 522;" d file:
-ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 525;" d file:
-ARCH_32BIT compat/compat_targetos.hpp 107;" d
-ARCH_32BIT compat/compat_targetos.hpp 43;" d
-ARCH_64BIT compat/compat_targetos.hpp 109;" d
-ARCH_64BIT compat/compat_targetos.hpp 44;" d
+APIENTRY crt/darwinosdef.h 43;" d
+APIENTRY crt/darwinosdef.h 65;" d
+APIENTRY crt/posixosdef.h 32;" d
+APIPRIVATE crt/darwinosdef.h 44;" d
+APIPRIVATE crt/darwinosdef.h 71;" d
+APIPRIVATE crt/posixosdef.h 33;" d
+ARCH_32BIT crt/crt_targetos.hpp 107;" d
+ARCH_32BIT crt/crt_targetos.hpp 43;" d
+ARCH_64BIT crt/crt_targetos.hpp 109;" d
+ARCH_64BIT crt/crt_targetos.hpp 44;" d
ARENA_CHUNKS polipo/chunk.c 283;" d file:
ARGB2Color uibase/uilib/control/uilabel.cpp /^ Color ARGB2Color(DWORD dwColor)$/;" f namespace:DuiLib
-ARGV_END compat/compat_argv.h 35;" d
-ARRAY_SIZE http/http/http_parser.cpp 37;" d file:
+ARGV_END crt/crt_argv.h 35;" d
+ARRAY_SIZE net/http_protocol/http_parser.cpp 37;" d file:
ASSERT uibase/uilib/core/uibase.h 28;" d
ATTRIBUTE polipo/polipo.h 86;" d
ATTRIBUTE polipo/polipo.h 88;" d
@@ -110,6 +50,7 @@ AcceptCB asynio/tcplistensocketimpl.cpp /^void CTcpListenSocketImpl::AcceptCB(vo
AcceptCChannel include/comutiliy/schannel.hpp /^ std_method_impl AcceptCChannel() {$/;" f class:SChannel
AcceptRequestPtr polipo/io.h /^} AcceptRequestRec, *AcceptRequestPtr;$/;" t typeref:struct:_AcceptRequest
AcceptRequestRec polipo/io.h /^} AcceptRequestRec, *AcceptRequestPtr;$/;" t typeref:struct:_AcceptRequest
+AcpGlobalAutoCommand vim_tool/.vim/autoload/acp.vim /^ augroup AcpGlobalAutoCommand$/;" a
Activate uibase/uilib/control/uibutton.cpp /^ bool CButtonUI::Activate()$/;" f class:DuiLib::CButtonUI
Activate uibase/uilib/control/uicombo.cpp /^bool CComboUI::Activate()$/;" f class:DuiLib::CComboUI
Activate uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::Activate()$/;" f class:DuiLib::CListContainerElementUI
@@ -138,17 +79,22 @@ AddChildNode uibase/uilib/control/uitreeview.cpp /^ bool CTreeNodeUI::AddChildNo
AddCustomAttribute uibase/uilib/core/uicontrol.cpp /^ void CControlUI::AddCustomAttribute(LPCTSTR pstrName, LPCTSTR pstrAttr)$/;" f class:DuiLib::CControlUI
AddDefaultAttributeList uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddDefaultAttributeList(LPCTSTR pStrControlName, LPCTSTR pStrControlAttrList, bool bShared)$/;" f class:DuiLib::CPaintManagerUI
AddDelayedCleanup uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddDelayedCleanup(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI
+AddFileInfo vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddFileInfo()$/;" f
AddFont uibase/uilib/core/uimanager.cpp /^HFONT CPaintManagerUI::AddFont(int id, LPCTSTR pStrFontName, int nSize, bool bBold, bool bUnderline, bool bItalic, bool bShared)$/;" f class:DuiLib::CPaintManagerUI
+AddHeader vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddHeader()$/;" f
AddImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::AddImage(LPCTSTR bitmap, HBITMAP hBitmap, int iWidth, int iHeight, bool bAlpha, bool bShared)$/;" f class:DuiLib::CPaintManagerUI
AddImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::AddImage(LPCTSTR bitmap, LPCTSTR type, DWORD mask, bool bUseHSL, bool bShared)$/;" f class:DuiLib::CPaintManagerUI
AddMessageFilter uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddMessageFilter(IMessageFilterUI* pFilter)$/;" f class:DuiLib::CPaintManagerUI
AddMouseLeaveNeeded uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddMouseLeaveNeeded(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI
AddNativeWindow uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddNativeWindow(CControlUI* pControl, HWND hChildWnd)$/;" f class:DuiLib::CPaintManagerUI
AddNotifier uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddNotifier(INotifyUI* pNotifier)$/;" f class:DuiLib::CPaintManagerUI
+AddObject container/mainrun.cpp /^std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)$/;" f class:CMainRun
AddOptionGroup uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddOptionGroup(LPCTSTR pStrGroupName, CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI
AddPostPaint uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddPostPaint(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI
AddPreMessageFilter uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddPreMessageFilter(IMessageFilterUI* pFilter)$/;" f class:DuiLib::CPaintManagerUI
AddRef uibase/uilib/control/uirichedit.cpp /^ULONG CTxtWinHost::AddRef(void)$/;" f class:DuiLib::CTxtWinHost
+AddSeparators vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddSeparators()$/;" f
+AddToFavDir vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddToFavDir()$/;" f
AddUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::AddUiWindow(void* hWnd)$/;" f class:CUiWindowsImpl
AddVirtualWnd uibase/uilib/core/uibase.cpp /^bool CNotifyPump::AddVirtualWnd(CDuiString strName,CNotifyPump* pObject)$/;" f class:DuiLib::CNotifyPump
AddWindowCustomAttribute uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddWindowCustomAttribute(LPCTSTR pstrName, LPCTSTR pstrAttr)$/;" f class:DuiLib::CPaintManagerUI
@@ -207,14 +153,14 @@ AuxData access/sqlite3.c /^struct AuxData {$/;" s file:
AuxData access/sqlite3.c /^typedef struct AuxData AuxData;$/;" t typeref:struct:AuxData file:
AuxData logs/sqlite3.c /^struct AuxData {$/;" s file:
AuxData logs/sqlite3.c /^typedef struct AuxData AuxData;$/;" t typeref:struct:AuxData file:
-BASE64DE_FIRST base/algorithm/compat_base64.c 4;" d file:
-BASE64DE_LAST base/algorithm/compat_base64.c 5;" d file:
-BASE64_DECODE_OUT_SIZE compat/compat_base64.h 14;" d
-BASE64_ENCODE_OUT_SIZE compat/compat_base64.h 13;" d
-BASE64_INVALID compat/compat_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon28
-BASE64_OK compat/compat_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon28
-BASE64_PAD base/algorithm/compat_base64.c 3;" d file:
-BEGIN_STDCOM_MAP include/dlcom/comfunc.hpp 58;" d
+BASE64DE_FIRST stdcrt/algorithm/compat_base64.c 4;" d file:
+BASE64DE_LAST stdcrt/algorithm/compat_base64.c 5;" d file:
+BASE64_DECODE_OUT_SIZE crt/crt_base64.h 14;" d
+BASE64_ENCODE_OUT_SIZE crt/crt_base64.h 13;" d
+BASE64_INVALID crt/crt_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon26
+BASE64_OK crt/crt_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon26
+BASE64_PAD stdcrt/algorithm/compat_base64.c 3;" d file:
+BEGIN_STDCOM_MAP include/dlcom/comfunc.hpp 57;" d
BINDIR polipo/Makefile /^BINDIR = $(PREFIX)\/bin$/;" m
BITMAP_BIT polipo/chunk.c 285;" d file:
BITMAP_FFS polipo/chunk.c 259;" d file:
@@ -240,13 +186,13 @@ BITVEC_TELEM access/sqlite3.c 36730;" d file:
BITVEC_TELEM logs/sqlite3.c 36730;" d file:
BITVEC_USIZE access/sqlite3.c 36724;" d file:
BITVEC_USIZE logs/sqlite3.c 36724;" d file:
-BIT_AT http/http/http_parser.cpp 41;" d file:
-BLEndianFloat base/code/compat_endian.c /^float BLEndianFloat(float value)$/;" f
-BLEndianUint32 base/code/compat_endian.c /^unsigned int BLEndianUint32(unsigned int value)$/;" f
-BLEndianUshort base/code/compat_endian.c /^unsigned short BLEndianUshort(unsigned short value)$/;" f
+BIT_AT net/http_protocol/http_parser.cpp 41;" d file:
+BLEndianFloat stdcrt/code/compat_endian.c /^float BLEndianFloat(float value)$/;" f
+BLEndianUint32 stdcrt/code/compat_endian.c /^unsigned int BLEndianUint32(unsigned int value)$/;" f
+BLEndianUshort stdcrt/code/compat_endian.c /^unsigned short BLEndianUshort(unsigned short value)$/;" f
BMS access/sqlite3.c 11302;" d file:
BMS logs/sqlite3.c 11302;" d file:
-BOOL compat/posixossysdef.h /^typedef int BOOL;$/;" t
+BOOL crt/posixossysdef.h /^typedef int BOOL;$/;" t
BOOST_ALL_NO_LIB 3rd/include/boost_def.hpp 6;" d
BOOST_DATE_TIME_SOURCE 3rd/include/boost_def.hpp 8;" d
BOOST_ERROR_CODE_HEADER_ONLY 3rd/include/boost_def.hpp 4;" d
@@ -255,8 +201,8 @@ BOOST_SYSTEM_NO_DEPRECATED 3rd/include/boost_def.hpp 11;" d
BOOST_SYSTEM_NO_LIB 3rd/include/boost_def.hpp 9;" d
BOOST_USE_WINAPI_VERSION 3rd/include/boost_def.hpp 5;" d
BROKER_ADDR_MAXLEN extensions/include/msgbus/imsgbus.h 7;" d
-BSTR compat/darwinossysdef.h /^typedef OLECHAR *BSTR;$/;" t
-BSTR compat/posixossysdef.h /^typedef OLECHAR *BSTR;$/;" t
+BSTR crt/darwinossysdef.h /^typedef OLECHAR *BSTR;$/;" t
+BSTR crt/posixossysdef.h /^typedef OLECHAR *BSTR;$/;" t
BTALLOC_ANY access/sqlite3.c 50722;" d file:
BTALLOC_ANY logs/sqlite3.c 50722;" d file:
BTALLOC_EXACT access/sqlite3.c 50723;" d file:
@@ -317,8 +263,8 @@ BTS_READ_ONLY access/sqlite3.c 50175;" d file:
BTS_READ_ONLY logs/sqlite3.c 50175;" d file:
BTS_SECURE_DELETE access/sqlite3.c 50177;" d file:
BTS_SECURE_DELETE logs/sqlite3.c 50177;" d file:
-BUFFER_PTR compat/compat_sock.h /^ typedef unsigned char* BUFFER_PTR;$/;" t
-BUFFER_SIZE compat/compat_sock.h /^ typedef unsigned long BUFFER_SIZE;$/;" t
+BUFFER_PTR crt/crt_sock.h /^ typedef unsigned char* BUFFER_PTR;$/;" t
+BUFFER_SIZE crt/crt_sock.h /^ typedef unsigned long BUFFER_SIZE;$/;" t
BUS_ACK_VALUE msgbus/auth.hpp 70;" d
BUS_BROKER_HELLO msgbus/auth.hpp 68;" d
BUS_CONSUMER_HELLO msgbus/auth.hpp 66;" d
@@ -341,19 +287,19 @@ BUS_PRODUCER_HELLO msgbus/auth.hpp 67;" d
BUS_PRODUCER_VERSION msgbus/auth.hpp 7;" d
BUS_PROTOCOL_HEAD_LEN msgbus/auth.hpp 60;" d
BUS_SEQ_VALUE msgbus/auth.hpp 71;" d
-BYTE compat/darwinossysdef.h /^typedef byte BYTE;$/;" t
-BYTE compat/posixossysdef.h /^typedef byte BYTE;$/;" t
+BYTE crt/darwinossysdef.h /^typedef byte BYTE;$/;" t
+BYTE crt/posixossysdef.h /^typedef byte BYTE;$/;" t
BYTESWAP32 access/sqlite3.c 47196;" d file:
BYTESWAP32 logs/sqlite3.c 47196;" d file:
-BYTES_NEEDED base/net/compat_sockinet.c 25;" d file:
+BYTES_NEEDED stdcrt/net/compat_sockinet.c 24;" d file:
BasicString_Append_Char include/utilex/string.hpp /^static_inline int BasicString_Append_Char(basic_tstring &src ,const char *dst, size_t len) {$/;" f
BenignMallocHooks access/sqlite3.c /^static SQLITE_WSD struct BenignMallocHooks {$/;" s file:
BenignMallocHooks access/sqlite3.c /^typedef struct BenignMallocHooks BenignMallocHooks;$/;" t typeref:struct:BenignMallocHooks file:
BenignMallocHooks logs/sqlite3.c /^static SQLITE_WSD struct BenignMallocHooks {$/;" s file:
BenignMallocHooks logs/sqlite3.c /^typedef struct BenignMallocHooks BenignMallocHooks;$/;" t typeref:struct:BenignMallocHooks file:
-Big_endian compat/compat_endian.h 16;" d
-BigtoLittle16 net/protocol/dns.h 6;" d
-BigtoLittle32 net/protocol/dns.h 7;" d
+Big_endian crt/crt_endian.h 16;" d
+BigtoLittle16 net/protocol/dns.h 12;" d
+BigtoLittle32 net/protocol/dns.h 13;" d
Bind asynio/timerimpl.cpp /^std_method_impl CTimerImpl::Bind(IBase* pBase)$/;" f class:CTimerImpl
Bind msgbus/agent.cpp /^std_method_impl CAgentImpl::Bind(LPCSTR addr, int len)$/;" f class:CAgentImpl
Bind msgbus/consumer.cpp /^std_method_impl CConsumerImpl::Bind(LPCSTR addr, int len)$/;" f class:CConsumerImpl
@@ -361,10 +307,9 @@ Bind msgbus/producer.cpp /^std_method_impl CProducerImpl::Bind(LPCSTR addr, int
BindAccept asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::BindAccept(IBase* pAccept)$/;" f class:CTcpListenSocketImpl
BindEvent asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::BindEvent(IBase *pEvents)$/;" f class:CIoOperationImpl
BindEvent include/comutiliy/cchannel.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:CChannel
-BindEvent include/comutiliy/ctimer.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:CChannel
BindEvent include/comutiliy/schannel.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:SChannel
BindEvent uibase/uiwindowimpl.cpp /^std_method_impl CUiWindowsImpl::BindEvent(IBase* pEvents)$/;" f class:CUiWindowsImpl
-BindHttp http/httptimpl.cpp /^std_method_impl CHttptImpl::BindHttp(IBase* pIAsyncTcpSocket, IBase* pIOper, IBase* pIDns)$/;" f class:CHttptImpl
+BindHttp net/httptimpl.cpp /^std_method_impl CHttptImpl::BindHttp(IBase* pIAsyncTcpSocket, IBase* pIOper, IBase* pIDns)$/;" f class:CHttptImpl
BindIBase asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::BindIBase(IBase* pBase)$/;" f class:CIoOperationImpl
BindIo asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::BindIo()$/;" f class:CTcpListenSocketImpl
BindIo asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::BindIo()$/;" f class:CTcpSocketImpl
@@ -399,6 +344,7 @@ Btree access/sqlite3.c /^typedef struct Btree Btree;$/;" t typeref:struct:Btree
Btree logs/sqlite3.c /^struct Btree {$/;" s file:
Btree logs/sqlite3.c /^typedef struct Btree Btree;$/;" t typeref:struct:Btree file:
Buffer include/comutiliy/serialize.hpp /^ std_method_type_impl(unsigned char*) Buffer(unsigned int bOffset)$/;" f class:Serialize
+BuildContextStack vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:BuildContextStack(namespaces, szCurrentScope)$/;" f
BusProtocol msgbus/auth.hpp /^} BusProtocol;$/;" t typeref:struct:_BusProtocol
BusProtocol_1st msgbus/auth.hpp /^static_inline HRESULT BusProtocol_1st(unsigned char* ptr, unsigned int seq, unsigned int ack) {$/;" f
BusProtocol_2nd msgbus/auth.hpp /^static_inline HRESULT BusProtocol_2nd(unsigned char* ptr, unsigned int seq, unsigned int ack) {$/;" f
@@ -416,10 +362,18 @@ BusyHandler access/sqlite3.c /^struct BusyHandler {$/;" s file:
BusyHandler access/sqlite3.c /^typedef struct BusyHandler BusyHandler;$/;" t typeref:struct:BusyHandler file:
BusyHandler logs/sqlite3.c /^struct BusyHandler {$/;" s file:
BusyHandler logs/sqlite3.c /^typedef struct BusyHandler BusyHandler;$/;" t typeref:struct:BusyHandler file:
+Button_Next mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Next;$/;" v
+Button_Pause mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Pause;$/;" v
+Button_Prior mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Prior;$/;" v
+Button_Start mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Start;$/;" v
+Button_Start mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Start;$/;" v
+Button_Stop mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Stop;$/;" v
+Button_Stop mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Stop;$/;" v
ByteRangeLockPB2 access/sqlite3.c /^struct ByteRangeLockPB2$/;" s file:
ByteRangeLockPB2 logs/sqlite3.c /^struct ByteRangeLockPB2$/;" s file:
CACHE_AUTHORIZATION polipo/object.h 156;" d
CACHE_COOKIE polipo/object.h 158;" d
+CACHE_DEBUG_TRACE vim_tool/.vim/autoload/omni/common/debug.vim /^let s:CACHE_DEBUG_TRACE = []$/;" v
CACHE_MISMATCH polipo/object.h 160;" d
CACHE_MUST_REVALIDATE polipo/object.h 148;" d
CACHE_NO polipo/object.h 138;" d
@@ -427,21 +381,25 @@ CACHE_NO_HIDDEN polipo/object.h 136;" d
CACHE_NO_STORE polipo/object.h 144;" d
CACHE_NO_TRANSFORM polipo/object.h 146;" d
CACHE_ONLY_IF_CACHED polipo/object.h 152;" d
+CACHE_OVERLOADED_FUNCTIONS vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_OVERLOADED_FUNCTIONS = {}$/;" v
CACHE_PRIVATE polipo/object.h 142;" d
CACHE_PROXY_REVALIDATE polipo/object.h 150;" d
CACHE_PUBLIC polipo/object.h 140;" d
CACHE_STALE access/sqlite3.c 13719;" d file:
CACHE_STALE logs/sqlite3.c 13719;" d file:
+CACHE_TAG_ENV vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_ENV = ''$/;" v
+CACHE_TAG_FILES vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_FILES = {}$/;" v
+CACHE_TAG_POPUP_ITEMS vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_POPUP_ITEMS = {}$/;" v
CACHE_VARY polipo/object.h 154;" d
-CALLBACK compat/darwinosdef.h 40;" d
-CALLBACK compat/darwinosdef.h 57;" d
-CALLBACK compat/posixosdef.h 29;" d
-CALLBACK_DATA http/http/http_parser.cpp 124;" d file:
-CALLBACK_DATA_ http/http/http_parser.cpp 101;" d file:
-CALLBACK_DATA_NOADVANCE http/http/http_parser.cpp 128;" d file:
-CALLBACK_NOTIFY http/http/http_parser.cpp 95;" d file:
-CALLBACK_NOTIFY_ http/http/http_parser.cpp 76;" d file:
-CALLBACK_NOTIFY_NOADVANCE http/http/http_parser.cpp 98;" d file:
+CALLBACK crt/darwinosdef.h 40;" d
+CALLBACK crt/darwinosdef.h 57;" d
+CALLBACK crt/posixosdef.h 29;" d
+CALLBACK_DATA net/http_protocol/http_parser.cpp 124;" d file:
+CALLBACK_DATA_ net/http_protocol/http_parser.cpp 101;" d file:
+CALLBACK_DATA_NOADVANCE net/http_protocol/http_parser.cpp 128;" d file:
+CALLBACK_NOTIFY net/http_protocol/http_parser.cpp 95;" d file:
+CALLBACK_NOTIFY_ net/http_protocol/http_parser.cpp 76;" d file:
+CALLBACK_NOTIFY_NOADVANCE net/http_protocol/http_parser.cpp 98;" d file:
CASE uibase/uilib/utils/stb_image.c 1339;" d file:
CASE uibase/uilib/utils/stb_image.c 1357;" d file:
CASE uibase/uilib/utils/stb_image.c 4026;" d file:
@@ -450,6 +408,12 @@ CASE uibase/uilib/utils/stb_image.c 4043;" d file:
CASE uibase/uilib/utils/stb_image.c 4056;" d file:
CAgentImpl msgbus/agent.cpp /^CAgentImpl::CAgentImpl(void)$/;" f class:CAgentImpl
CAgentImpl msgbus/agent.h /^class CAgentImpl : public IAgent,$/;" c
+CAppViewImpl mainui/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl
+CAppViewImpl mainui/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c
+CAppViewImpl mainuiapp/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl
+CAppViewImpl mainuiapp/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c
+CAppViewImpl testmain/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl
+CAppViewImpl testmain/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c
CAsynFrameImpl asynio/asynframeimpl.cpp /^CAsynFrameImpl::CAsynFrameImpl(void)$/;" f class:CAsynFrameImpl
CAsynFrameImpl asynio/asynframeimpl.h /^class CAsynFrameImpl : public IAsynFrame,$/;" c
CAutoLock include/utilex/autolock.hpp /^ CAutoLock()$/;" f class:CAutoLock
@@ -458,16 +422,14 @@ CBrokerImpl msgbus/broker.cpp /^CBrokerImpl::CBrokerImpl(void)$/;" f class:CBrok
CBrokerImpl msgbus/broker.h /^class CBrokerImpl : public IBroker,$/;" c
CButtonUI uibase/uilib/control/uibutton.cpp /^ CButtonUI::CButtonUI()$/;" f class:DuiLib::CButtonUI
CButtonUI uibase/uilib/control/uibutton.h /^ class CButtonUI : public CLabelUI$/;" c namespace:DuiLib
-CC_CLANG compat/compat_targetos.hpp 37;" d
-CC_GCC compat/compat_targetos.hpp 36;" d
-CC_INTER compat/compat_targetos.hpp 39;" d
-CC_LLVM compat/compat_targetos.hpp 38;" d
-CC_MSVC compat/compat_targetos.hpp 35;" d
-CC_NDK compat/compat_targetos.hpp 40;" d
+CC_CLANG crt/crt_targetos.hpp 37;" d
+CC_GCC crt/crt_targetos.hpp 36;" d
+CC_INTER crt/crt_targetos.hpp 39;" d
+CC_LLVM crt/crt_targetos.hpp 38;" d
+CC_MSVC crt/crt_targetos.hpp 35;" d
+CC_NDK crt/crt_targetos.hpp 40;" d
CChannel include/comutiliy/cchannel.hpp /^ CChannel(void) {$/;" f class:CChannel
CChannel include/comutiliy/cchannel.hpp /^class CChannel $/;" c
-CChannel include/comutiliy/ctimer.hpp /^ CChannel(void) {$/;" f class:CChannel
-CChannel include/comutiliy/ctimer.hpp /^class CChannel $/;" c
CCheckBoxUI uibase/uilib/control/uicheckbox.h /^ class CCheckBoxUI : public COptionUI$/;" c namespace:DuiLib
CChildLayoutUI uibase/uilib/layout/uichildlayout.cpp /^ CChildLayoutUI::CChildLayoutUI()$/;" f class:DuiLib::CChildLayoutUI
CChildLayoutUI uibase/uilib/layout/uichildlayout.h /^ class CChildLayoutUI : public CContainerUI$/;" c namespace:DuiLib
@@ -557,8 +519,8 @@ CFontImpl res/fontimpl.cpp /^CFontImpl::CFontImpl(void)$/;" f class:CFontImpl
CFontImpl res/fontimpl.h /^class CFontImpl : public IPlugin,$/;" c
CGifAnimUI uibase/uilib/control/uigifanim.cpp /^ CGifAnimUI::CGifAnimUI(void)$/;" f class:DuiLib::CGifAnimUI
CGifAnimUI uibase/uilib/control/uigifanim.h /^ class CGifAnimUI : public CControlUI$/;" c namespace:DuiLib
-CHAR compat/darwinossysdef.h /^typedef char CHAR;$/;" t
-CHAR compat/posixossysdef.h /^typedef char CHAR;$/;" t
+CHAR crt/darwinossysdef.h /^typedef char CHAR;$/;" t
+CHAR crt/posixossysdef.h /^typedef char CHAR;$/;" t
CHECK_ENTRY polipo/diskcache.c 204;" d file:
CHECK_ENTRY polipo/diskcache.c 231;" d file:
CHECK_FOR_INTERRUPT access/sqlite3.c 66906;" d file:
@@ -567,7 +529,7 @@ CHECK_PAGE access/sqlite3.c 40590;" d file:
CHECK_PAGE access/sqlite3.c 40601;" d file:
CHECK_PAGE logs/sqlite3.c 40590;" d file:
CHECK_PAGE logs/sqlite3.c 40601;" d file:
-CHUNKED http/http/http_parser.cpp 165;" d file:
+CHUNKED net/http_protocol/http_parser.cpp 165;" d file:
CHUNKS polipo/chunk.h 39;" d
CHUNK_ARENA_INDEX polipo/chunk.c 300;" d file:
CHUNK_IN_ARENA polipo/chunk.c 295;" d file:
@@ -577,45 +539,43 @@ CHUNK_SIZE polipo/chunk.h 35;" d
CHandlePtr include/utilex/safeptr.hpp 160;" d
CHorizontalLayoutUI uibase/uilib/layout/uihorizontallayout.cpp /^ CHorizontalLayoutUI::CHorizontalLayoutUI() : m_iSepWidth(0), m_uButtonState(0), m_bImmMode(false)$/;" f class:DuiLib::CHorizontalLayoutUI
CHorizontalLayoutUI uibase/uilib/layout/uihorizontallayout.h /^ class CHorizontalLayoutUI : public CContainerUI$/;" c namespace:DuiLib
-CHttpImpl http/httpimpl.cpp /^CHttpImpl::CHttpImpl(void)$/;" f class:CHttpImpl
-CHttpImpl http/httpimpl.h /^class CHttpImpl : public IHttp,$/;" c
-CHttpParser http/http/chttpparser.cpp /^CHttpParser::CHttpParser()$/;" f class:CHttpParser
-CHttpParser http/http/chttpparser.h /^class CHttpParser$/;" c
-CHttptImpl http/httptimpl.cpp /^CHttptImpl::CHttptImpl()$/;" f class:CHttptImpl
-CHttptImpl http/httptimpl.h /^class CHttptImpl : public IHttp_t,$/;" c
+CHttpParser net/http_protocol/chttpparser.cpp /^CHttpParser::CHttpParser()$/;" f class:CHttpParser
+CHttpParser net/http_protocol/chttpparser.h /^class CHttpParser$/;" c
+CHttptImpl net/httptimpl.cpp /^CHttptImpl::CHttptImpl()$/;" f class:CHttptImpl
+CHttptImpl net/httptimpl.h /^class CHttptImpl : public IHttp_t,$/;" c
CIoOperationImpl asynio/iooperationimpl.cpp /^CIoOperationImpl::CIoOperationImpl()$/;" f class:CIoOperationImpl
CIoOperationImpl asynio/iooperationimpl.h /^class CIoOperationImpl : public IOperation,$/;" c
-CJSON_NESTING_LIMIT compat/compat_cjson.h 73;" d
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON_bool fmt)$/;" f
-CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)$/;" f
-CJSON_PUBLIC compat/compat_cjson.h 67;" d
-CJSON_VERSION_MAJOR compat/compat_cjson.h 13;" d
-CJSON_VERSION_MINOR compat/compat_cjson.h 14;" d
-CJSON_VERSION_PATCH compat/compat_cjson.h 15;" d
+CJSON_NESTING_LIMIT crt/crt_cjson.h 73;" d
+CJSON_PUBLIC crt/crt_cjson.h 67;" d
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON_bool fmt)$/;" f
+CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)$/;" f
+CJSON_VERSION_MAJOR crt/crt_cjson.h 13;" d
+CJSON_VERSION_MINOR crt/crt_cjson.h 14;" d
+CJSON_VERSION_PATCH crt/crt_cjson.h 15;" d
CLEARBIT access/sqlite3.c 36980;" d file:
CLEARBIT logs/sqlite3.c 36980;" d file:
-CLOSE http/http/http_parser.cpp 167;" d file:
+CLOSE net/http_protocol/http_parser.cpp 167;" d file:
CLOSE polipo/mingw.h 173;" d
CLOSE polipo/polipo.h 190;" d
CLOSE_BOTH_IO extensions/include/io/iiodevice.h 6;" d
CLOSE_RD_IO extensions/include/io/iiodevice.h 5;" d
CLOSE_WR_IO extensions/include/io/iiodevice.h 4;" d
-CLSID compat/compat_guid.hpp /^typedef GUID CLSID;$/;" t
+CLSID crt/crt_guid.hpp /^typedef GUID CLSID;$/;" t
CLSIDFromProgID container/objectloader.cpp /^std_method_type_impl(CLSID) CObjectLoader::CLSIDFromProgID(LPCSTR lpProgId)$/;" f class:CObjectLoader
CLSIDFromProgID container/rot.cpp /^std_method_type_impl(CLSID) CComRunningObjectTableImpl::CLSIDFromProgID(LPCSTR lpProgId)$/;" f class:CComRunningObjectTableImpl
-CLSID_NULL compat/compat_guid.hpp 47;" d
+CLSID_NULL crt/crt_guid.hpp 47;" d
CLabelUI uibase/uilib/control/uilabel.cpp /^ CLabelUI::CLabelUI() : $/;" f class:DuiLib::CLabelUI
CLabelUI uibase/uilib/control/uilabel.h /^ class CLabelUI : public CControlUI$/;" c namespace:DuiLib
CLangImpl res/langimpl.cpp /^CLangImpl::CLangImpl(void)$/;" f class:CLangImpl
@@ -652,64 +612,10 @@ CLogFiltersImpl logs/logfilters.cpp /^CLogFiltersImpl::CLogFiltersImpl(void)$/;"
CLogFiltersImpl logs/logfilters.h /^class CLogFiltersImpl : public ILogFilters,$/;" c
CLogsImpl logs/logsimpl.cpp /^CLogsImpl::CLogsImpl(void)$/;" f class:CLogsImpl
CLogsImpl logs/logsimpl.h /^class CLogsImpl : public ILogs,$/;" c
-CMAKE_BINARY_DIR Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR access/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR asynio/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR base/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR base_test/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR container/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR dispatch/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR guidgen/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR http/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR license/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR logs/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR main/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR mainview/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR mempool/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR msgbus/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR net/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR render/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_BINARY_DIR testmain/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_COMMAND Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND access/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND asynio/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND base/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND base_test/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND container/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND dispatch/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND guidgen/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND http/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND license/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND logs/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND main/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND mainview/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND mempool/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND msgbus/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND net/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND render/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_COMMAND testmain/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m
-CMAKE_SOURCE_DIR Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR access/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR asynio/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR base/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR base_test/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR container/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR dispatch/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR guidgen/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR http/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR license/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR logs/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR main/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR mainview/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR mempool/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR msgbus/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR net/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR render/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
-CMAKE_SOURCE_DIR testmain/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m
CMainRun container/mainrun.cpp /^CMainRun::CMainRun(void)$/;" f class:CMainRun
CMainRun container/mainrun.h /^class CMainRun : public IObjectRun,$/;" c
CMainViewImpl mainview/mainviewimpl.cpp /^CMainViewImpl::CMainViewImpl(void)$/;" f class:CMainViewImpl
-CMainViewImpl mainview/mainviewimpl.h /^class CMainViewImpl : public IPlugin,$/;" c
+CMainViewImpl mainview/mainviewimpl.h /^class CMainViewImpl : public IPlugin,$/;" c
CMarkup uibase/uilib/core/uimarkup.cpp /^CMarkup::CMarkup(LPCTSTR pstrXML)$/;" f class:DuiLib::CMarkup
CMarkup uibase/uilib/core/uimarkup.h /^class CMarkup$/;" c namespace:DuiLib
CMarkupNode uibase/uilib/core/uimarkup.cpp /^CMarkupNode::CMarkupNode() $/;" f class:DuiLib::CMarkupNode
@@ -757,264 +663,11 @@ COLNAME_NAME access/sqlite3.c 9049;" d file:
COLNAME_NAME logs/sqlite3.c 9049;" d file:
COLNAME_TABLE access/sqlite3.c 9052;" d file:
COLNAME_TABLE logs/sqlite3.c 9052;" d file:
-COLORREF compat/darwinossysdef.h /^typedef DWORD COLORREF;$/;" t
-COLORREF compat/posixossysdef.h /^typedef DWORD COLORREF;$/;" t
+COLORREF crt/darwinossysdef.h /^typedef DWORD COLORREF;$/;" t
+COLORREF crt/posixossysdef.h /^typedef DWORD COLORREF;$/;" t
COLUMN_MASK access/sqlite3.c 92423;" d file:
COLUMN_MASK logs/sqlite3.c 92423;" d file:
COMBO uibase/uilib/utils/stb_image.c 1338;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 108;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 115;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 122;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 129;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 137;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 144;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 151;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 159;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 164;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 171;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 174;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 183;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 186;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 189;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 192;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 19;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 207;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 222;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 229;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 243;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 253;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 271;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 280;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 294;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 311;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 314;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 56;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 64;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 70;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 76;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 85;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 94;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 108;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 115;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 122;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 129;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 137;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 13;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 144;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 151;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 159;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 164;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 171;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 174;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 183;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 186;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 19;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 201;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 216;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 223;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 237;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 251;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 269;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 278;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 296;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 299;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 56;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 64;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 70;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 76;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 85;" d file:
-COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 94;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 226;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 285;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 290;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 220;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 283;" d file:
-COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 288;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 102;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 110;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 117;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 124;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 130;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 139;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 146;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 152;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 160;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 166;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 177;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 195;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 200;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 211;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 223;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 233;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 244;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 255;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 274;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 27;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 282;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 287;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 296;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 301;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 57;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 65;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 72;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 78;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 87;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 97;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 102;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 110;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 117;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 124;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 130;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 139;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 146;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 152;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 15;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 160;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 166;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 177;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 189;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 194;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 205;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 217;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 227;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 239;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 241;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 253;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 272;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 27;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 280;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 285;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 57;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 65;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 72;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 78;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 87;" d file:
-COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 97;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 103;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 111;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 118;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 125;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 131;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 140;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 147;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 153;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 161;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 167;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 178;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 196;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 201;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 212;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 224;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 234;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 246;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 256;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 275;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 283;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 288;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 28;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 297;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 302;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 58;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 66;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 73;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 79;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 88;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 98;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 103;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 111;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 118;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 125;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 131;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 140;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 147;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 153;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 161;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 167;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 16;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 178;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 190;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 195;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 206;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 218;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 228;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 244;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 254;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 273;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 281;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 286;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 28;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 58;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 66;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 73;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 79;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 88;" d file:
-COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 98;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 104;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 112;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 119;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 126;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 132;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 141;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 148;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 155;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 168;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 179;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 197;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 202;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 213;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 225;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 235;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 249;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 260;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 263;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 276;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 284;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 289;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 298;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 303;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 30;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 32;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 60;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 67;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 81;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 90;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 99;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 104;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 112;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 119;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 126;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 132;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 141;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 148;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 155;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 168;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 179;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 191;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 196;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 207;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 219;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 229;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 247;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 258;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 261;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 274;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 282;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 287;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 30;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 32;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 60;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 67;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 81;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 90;" d file:
-COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 99;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 133;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 219;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 267;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 36;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 133;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 213;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 265;" d file:
-COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 36;" d file:
CONDITION_FAILED polipo/http.h 130;" d
CONDITION_MATCH polipo/http.h 128;" d
CONDITION_NOT_MODIFIED polipo/http.h 129;" d
@@ -1038,32 +691,32 @@ CONFIG_VARIABLE_SETTABLE polipo/config.h 57;" d
CONNECTING_CONNECT polipo/http.h 124;" d
CONNECTING_DNS polipo/http.h 123;" d
CONNECTING_SOCKS polipo/http.h 125;" d
-CONNECTION http/http/http_parser.cpp 161;" d file:
+CONNECTION net/http_protocol/http_parser.cpp 161;" d file:
CONN_BIGBUF polipo/http.h 96;" d
CONN_BIGREQBUF polipo/http.h 97;" d
CONN_READER polipo/http.h 93;" d
CONN_SIDE_READER polipo/http.h 95;" d
CONN_WRITER polipo/http.h 94;" d
-CONST_VTBL compat/compat_common.hpp 100;" d
-CONST_VTBL compat/compat_common.hpp 98;" d
-CONTENT_LENGTH http/http/http_parser.cpp 162;" d file:
+CONST_VTBL crt/crt_common.hpp 100;" d
+CONST_VTBL crt/crt_common.hpp 98;" d
+CONTENT_LENGTH net/http_protocol/http_parser.cpp 162;" d file:
CORRUPT_DB access/sqlite3.c 11992;" d file:
CORRUPT_DB logs/sqlite3.c 11992;" d file:
-COUNT_HEADER_SIZE http/http/http_parser.cpp 150;" d file:
+COUNT_HEADER_SIZE net/http_protocol/http_parser.cpp 150;" d file:
CObjectLoader container/objectloader.cpp /^CObjectLoader::CObjectLoader(void)$/;" f class:CObjectLoader
CObjectLoader container/objectloader.h /^class CObjectLoader : public ICompoentLoader,$/;" c
COptionUI uibase/uilib/control/uioption.cpp /^ COptionUI::COptionUI() : m_bSelected(false), m_dwSelectedBkColor(0), m_dwSelectedTextColor(0)$/;" f class:DuiLib::COptionUI
COptionUI uibase/uilib/control/uioption.h /^ class COptionUI : public CButtonUI$/;" c namespace:DuiLib
CPPSQLITE_ERROR logs/CppSQLite3.h 35;" d
-CPP_NO_VTABLE compat/compat_common.hpp 11;" d
-CPP_NO_VTABLE compat/compat_common.hpp 15;" d
-CPP_NO_VTABLE compat/compat_common.hpp 17;" d
-CPU_ALPHA compat/compat_targetos.hpp 32;" d
-CPU_ARM compat/compat_targetos.hpp 30;" d
-CPU_MIPS compat/compat_targetos.hpp 31;" d
-CPU_POWERPC compat/compat_targetos.hpp 33;" d
-CPU_SYSTEM compat/compat_targetos.hpp 28;" d
-CPU_X86 compat/compat_targetos.hpp 29;" d
+CPP_NO_VTABLE crt/crt_common.hpp 11;" d
+CPP_NO_VTABLE crt/crt_common.hpp 15;" d
+CPP_NO_VTABLE crt/crt_common.hpp 17;" d
+CPU_ALPHA crt/crt_targetos.hpp 32;" d
+CPU_ARM crt/crt_targetos.hpp 30;" d
+CPU_MIPS crt/crt_targetos.hpp 31;" d
+CPU_POWERPC crt/crt_targetos.hpp 33;" d
+CPU_SYSTEM crt/crt_targetos.hpp 28;" d
+CPU_X86 crt/crt_targetos.hpp 29;" d
CPaintManagerUI uibase/uilib/core/uimanager.cpp /^CPaintManagerUI::CPaintManagerUI() :$/;" f class:DuiLib::CPaintManagerUI
CPaintManagerUI uibase/uilib/core/uimanager.h /^class CPaintManagerUI$/;" c namespace:DuiLib
CPlugins container/plugins.cpp /^CPlugins::CPlugins(void)$/;" f class:CPlugins
@@ -1072,7 +725,7 @@ CProducerImpl msgbus/producer.cpp /^CProducerImpl::CProducerImpl(void)$/;" f cla
CProducerImpl msgbus/producer.h /^class CProducerImpl : public IProducer,$/;" c
CProgressUI uibase/uilib/control/uiprogress.cpp /^ CProgressUI::CProgressUI() : m_bHorizontal(true), m_nMin(0), m_nMax(100), m_nValue(0)$/;" f class:DuiLib::CProgressUI
CProgressUI uibase/uilib/control/uiprogress.h /^ class CProgressUI : public CLabelUI$/;" c namespace:DuiLib
-CR http/http/http_parser.cpp 408;" d file:
+CR net/http_protocol/http_parser.cpp 408;" d file:
CRecordSet access/recordset.cpp /^CRecordSet::CRecordSet(sqlite3_stmt *pStmt3)$/;" f class:CRecordSet
CRecordSet access/recordset.h /^class CRecordSet : public IRecordSet, $/;" c
CRenderClip uibase/uilib/core/uirender.h /^class CRenderClip$/;" c namespace:DuiLib
@@ -1100,11 +753,11 @@ CTIMEOPT_VAL access/sqlite3.c 13170;" d file:
CTIMEOPT_VAL logs/sqlite3.c 13170;" d file:
CTIMEOPT_VAL_ access/sqlite3.c 13169;" d file:
CTIMEOPT_VAL_ logs/sqlite3.c 13169;" d file:
-CTL_PluginExtName base/io/compat_path.c 11;" d file:
-CTL_PluginExtName base/io/compat_path.c 13;" d file:
-CTL_PluginExtName base/io/compat_path.c 15;" d file:
-CTL_PluginExtName base/io/compat_path.c 5;" d file:
-CTL_PluginExtName base/io/compat_path.c 7;" d file:
+CTL_PluginExtName stdcrt/io/compat_path.c 13;" d file:
+CTL_PluginExtName stdcrt/io/compat_path.c 15;" d file:
+CTL_PluginExtName stdcrt/io/compat_path.c 18;" d file:
+CTL_PluginExtName stdcrt/io/compat_path.c 5;" d file:
+CTL_PluginExtName stdcrt/io/compat_path.c 7;" d file:
CTRL_FREE access/sqlite3.c 17579;" d file:
CTRL_FREE logs/sqlite3.c 17579;" d file:
CTRL_LOGSIZE access/sqlite3.c 17578;" d file:
@@ -1135,7 +788,7 @@ CTreeViewUI uibase/uilib/control/uitreeview.cpp /^ CTreeViewUI::CTreeViewUI( voi
CTreeViewUI uibase/uilib/control/uitreeview.h /^ class CTreeViewUI : public CListUI,public INotifyUI$/;" c namespace:DuiLib
CTxtWinHost uibase/uilib/control/uirichedit.cpp /^CTxtWinHost::CTxtWinHost() : m_re(NULL)$/;" f class:DuiLib::CTxtWinHost
CTxtWinHost uibase/uilib/control/uirichedit.cpp /^class CTxtWinHost : public ITextHost$/;" c namespace:DuiLib file:
-CURRENT_STATE http/http/http_parser.cpp 55;" d file:
+CURRENT_STATE net/http_protocol/http_parser.cpp 55;" d file:
CURSOR_FAULT access/sqlite3.c 50286;" d file:
CURSOR_FAULT logs/sqlite3.c 50286;" d file:
CURSOR_INVALID access/sqlite3.c 50282;" d file:
@@ -1147,7 +800,7 @@ CURSOR_SKIPNEXT logs/sqlite3.c 50284;" d file:
CURSOR_VALID access/sqlite3.c 50283;" d file:
CURSOR_VALID logs/sqlite3.c 50283;" d file:
CUdpSocketImpl asynio/udpsocketimpl.cpp /^CUdpSocketImpl::CUdpSocketImpl()$/;" f class:CUdpSocketImpl
-CUdpSocketImpl asynio/udpsocketimpl.h /^class CUdpSocketImpl : public IUdpSocket,$/;" c
+CUdpSocketImpl asynio/udpsocketimpl.h /^class CUdpSocketImpl : public IUdpSocket,$/;" c
CUiBaseImpl uibase/uibaseimpl.cpp /^CUiBaseImpl::CUiBaseImpl(void)$/;" f class:CUiBaseImpl
CUiBaseImpl uibase/uibaseimpl.h /^class CUiBaseImpl : public IUIBase,$/;" c
CUiControlImpl uibase/uicontrolimpl.cpp /^CUiControlImpl::CUiControlImpl(void)$/;" f class:CUiControlImpl
@@ -1178,28 +831,22 @@ CXFieldInfo access/fieldinfo.cpp /^CXFieldInfo::CXFieldInfo(void)$/;" f class:CX
CXFieldInfo access/fieldinfo.h /^class CXFieldInfo : public IFieldInfo, $/;" c
CXTableInfo access/tableinfo.cpp /^CXTableInfo::CXTableInfo(LPCSTR lpszName)$/;" f class:CXTableInfo
CXTableInfo access/tableinfo.h /^class CXTableInfo : public ITableInfo, $/;" c
-CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 608;" d file:
-CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 610;" d file:
-CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 613;" d file:
-CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 616;" d file:
-CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 618;" d file:
-C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 623;" d file:
-C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 625;" d file:
-C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 628;" d file:
-C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 630;" d file:
-C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 632;" d file:
CacheControlPtr polipo/object.h /^} CacheControlRec, *CacheControlPtr;$/;" t typeref:struct:_CacheControl
CacheControlRec polipo/object.h /^} CacheControlRec, *CacheControlPtr;$/;" t typeref:struct:_CacheControl
CalLocation uibase/uilib/control/uitreeview.cpp /^ CTreeNodeUI* CTreeNodeUI::CalLocation( CTreeNodeUI* _pTreeNodeUI )$/;" f class:DuiLib::CTreeNodeUI
CalPos uibase/uilib/control/uidatetime.cpp /^ RECT CDateTimeWnd::CalPos()$/;" f class:DuiLib::CDateTimeWnd
CalPos uibase/uilib/control/uiedit.cpp /^ RECT CEditWnd::CalPos()$/;" f class:DuiLib::CEditWnd
Calloc mempool/mempoolimpl.cpp /^std_method_type_impl(void*) CMemPoolImpl::Calloc(size_t num, size_t size)$/;" f class:CMemPoolImpl
-Cancel http/httptimpl.cpp /^std_method_impl CHttptImpl::Cancel()$/;" f class:CHttptImpl
+CanUseOmnicompletion vim_tool/.vim/autoload/omni/cpp/maycomplete.vim /^function! s:CanUseOmnicompletion()$/;" f
+Cancel net/httptimpl.cpp /^std_method_impl CHttptImpl::Cancel()$/;" f class:CHttptImpl
CellInfo access/sqlite3.c /^struct CellInfo {$/;" s file:
CellInfo access/sqlite3.c /^typedef struct CellInfo CellInfo;$/;" t typeref:struct:CellInfo file:
CellInfo logs/sqlite3.c /^struct CellInfo {$/;" s file:
CellInfo logs/sqlite3.c /^typedef struct CellInfo CellInfo;$/;" t typeref:struct:CellInfo file:
CenterWindow uibase/uilib/core/uibase.cpp /^void CWindowWnd::CenterWindow()$/;" f class:DuiLib::CWindowWnd
+Cffunc vim_tool/.vim/plugin/devc.vim /^function s:Cffunc(cfname) abort$/;" f
+Cgdbfunc vim_tool/.vim/plugin/devc.vim /^function s:Cgdbfunc(gdbname) abort$/;" f
+Cgitfunc vim_tool/.vim/plugin/devc.vim /^function s:Cgitfunc(gitname) abort$/;" f
ChannelId extensions/include/net/issh.h /^typedef long ChannelId;$/;" t
CharArrayPtr include/utilex/safeptr.hpp 131;" d
CharFromPos uibase/uilib/control/uirichedit.cpp /^int CRichEditUI::CharFromPos(CDuiPoint pt) const$/;" f class:DuiLib::CRichEditUI
@@ -1217,6 +864,7 @@ ChunkPtr polipo/object.h /^} ChunkRec, *ChunkPtr;$/;" t typeref:struct:_Chunk
ChunkRec polipo/object.h /^} ChunkRec, *ChunkPtr;$/;" t typeref:struct:_Chunk
CircularBufferPtr polipo/tunnel.h /^} CircularBufferRec, *CircularBufferPtr;$/;" t typeref:struct:_CircularBuffer
CircularBufferRec polipo/tunnel.h /^} CircularBufferRec, *CircularBufferPtr;$/;" t typeref:struct:_CircularBuffer
+CleanUpHistory vim_tool/.vim/plugin/winfileexplorer.vim /^function! CleanUpHistory()$/;" f
Cleanup access/sqlite3.c /^static void Cleanup(Vdbe *p){$/;" f file:
Cleanup logs/sqlite3.c /^static void Cleanup(Vdbe *p){$/;" f file:
Clear container/mainrun.cpp /^std_method_impl CMainRun::Clear()$/;" f class:CMainRun
@@ -1244,6 +892,7 @@ CloseIo asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::CUdpSocketImp
CloseSock asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::CloseSock()$/;" f class:CTcpListenSocketImpl
CloseSock asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::CloseSock()$/;" f class:CTcpSocketImpl
CloseSock asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::CloseSock()$/;" f class:CUdpSocketImpl
+CloseWindowsManager vim_tool/.vim/plugin/winmanager.vim /^function! CloseWindowsManager()$/;" f
ClsId container/stdafx.h /^ CLSID ClsId;$/;" m class:Com_Plugin
ClsIdTable container/stdafx.h /^typedef std::map > ClsIdTable;$/;" t
ClsIdTableBooliterator container/stdafx.h /^typedef std::pair ClsIdTableBooliterator;$/;" t
@@ -1264,7 +913,6 @@ Column logs/sqlite3.c /^typedef struct Column Column;$/;" t typeref:struct:Colum
ComClassObject access/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
ComClassObject asynio/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
ComClassObject container/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
-ComClassObject http/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
ComClassObject logs/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
ComClassObject mainview/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
ComClassObject mempool/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v
@@ -1282,6 +930,12 @@ Com_Plugin container/stdafx.h /^class Com_Plugin $/;" c
Commit access/statement.cpp /^std_method_type_impl(int) CStatementImpl::Commit()$/;" f class:CStatementImpl
Compare uibase/uilib/utils/utils.cpp /^ int CDuiString::Compare(LPCTSTR lpsz) const $/;" f class:DuiLib::CDuiString
CompareNoCase uibase/uilib/utils/utils.cpp /^ int CDuiString::CompareNoCase(LPCTSTR lpsz) const $/;" f class:DuiLib::CDuiString
+CompileCFile vim_tool/.vim/plugin/devfunckey.vim /^func! CompileCFile()$/;" f
+CompileCPPFile vim_tool/.vim/plugin/devfunckey.vim /^func! CompileCPPFile()$/;" f
+CompileGo vim_tool/.vim/plugin/devfunckey.vim /^func! CompileGo()$/;" f
+CompileJava vim_tool/.vim/plugin/devfunckey.vim /^func! CompileJava()$/;" f
+CompileProgram vim_tool/.vim/plugin/devfunckey.vim /^func! CompileProgram()$/;" f
+CompilePython vim_tool/.vim/plugin/devfunckey.vim /^func! CompilePython()$/;" f
ComponentPath container/mainrun.cpp /^std_method_type_impl(basic_tstring) CMainRun::ComponentPath(LPCSTR ComponentName)$/;" f class:CMainRun
ComponentPlugin container/stdafx.h /^typedef map ComponentPlugin;$/;" t
ComponentPluginIterator container/stdafx.h /^typedef map::iterator ComponentPluginIterator;$/;" t
@@ -1335,6 +989,8 @@ CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table()$/;" f c
CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table(char** paszResults, int nRows, int nCols)$/;" f class:CppSQLite3Table
CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table(const CppSQLite3Table& rTable)$/;" f class:CppSQLite3Table
CppSQLite3Table logs/CppSQLite3.h /^class CppSQLite3Table$/;" c
+Cppclsfunc vim_tool/.vim/plugin/devc.vim /^function s:Cppclsfunc(clsname) abort$/;" f
+Cppimplfunc vim_tool/.vim/plugin/devc.vim /^function s:Cppimplfunc(clsimpname) abort$/;" f
Create uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, const RECT rc, HMENU hMenu)$/;" f class:DuiLib::CWindowWnd
Create uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, int x, int y, int cx, int cy, HMENU hMenu)$/;" f class:DuiLib::CWindowWnd
Create uibase/uilib/core/uidlgbuilder.cpp /^CControlUI* CDlgBuilder::Create(IDlgBuilderCB* pCallback, CPaintManagerUI* pManager, CControlUI* pParent)$/;" f class:DuiLib::CDlgBuilder
@@ -1343,15 +999,13 @@ Create uibase/uilib/utils/wndshadow.cpp /^void CWndShadow::Create(HWND hParentWn
CreateARGB32Bitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::CreateARGB32Bitmap(HDC hDC, int cx, int cy, COLORREF** pBits)$/;" f class:DuiLib::CRenderEngine
CreateAsynIoOperation asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateAsynIoOperation(IBase **ppOperation)$/;" f class:CAsynFrameImpl
CreateCChannel include/comutiliy/cchannel.hpp /^ std_method_impl CreateCChannel(IBase *pRot) {$/;" f class:CChannel
-CreateContainer include/dlcom/objectrun.hpp /^ int CreateContainer(const basic_tchar* path,UINT len) {$/;" f class:CContainer
+CreateContainer include/dlcom/objectrun.hpp /^ HRESULT CreateContainer(const basic_tchar* path,UINT len) {$/;" f class:CContainer
CreateControl uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::CreateControl(UIType type, IBase **pControl)$/;" f class:CUiBaseImpl
CreateControl uibase/uilib/utils/winimplbase.cpp /^CControlUI* WindowImplBase::CreateControl(LPCTSTR pstrClass)$/;" f class:DuiLib::WindowImplBase
CreateDuiWindow uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::CreateDuiWindow( HWND hwndParent, LPCTSTR pstrWindowName,DWORD dwStyle \/*=0*\/, DWORD dwExStyle \/*=0*\/ )$/;" f class:DuiLib::CWindowWnd
CreateField access/tableinfo.cpp /^std_method_impl CXTableInfo::CreateField(IFieldInfo** pField)$/;" f class:CXTableInfo
CreateFile asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateFile(IBase** pFile)$/;" f class:CAsynFrameImpl
CreateHost uibase/uilib/control/uirichedit.cpp /^HRESULT CreateHost(CRichEditUI *re, const CREATESTRUCT *pcs, CTxtWinHost **pptec)$/;" f namespace:DuiLib
-CreateHttp_s http/httpimpl.cpp /^std_method_impl CHttpImpl::CreateHttp_s(IBase **pBase)$/;" f class:CHttpImpl
-CreateHttp_t http/httpimpl.cpp /^std_method_impl CHttpImpl::CreateHttp_t(IBase **pBase)$/;" f class:CHttpImpl
CreateInstance access/fieldinfo.cpp /^HRESULT CXFieldInfo::CreateInstance(IFieldInfo** ppFieldInfo)$/;" f class:CXFieldInfo
CreateInstance access/recordset.cpp /^HRESULT CRecordSet::CreateInstance(sqlite3_stmt* pStmt, IRecordSet** ppRecordSet)$/;" f class:CRecordSet
CreateInstance access/tableinfo.cpp /^HRESULT CXTableInfo::CreateInstance(LPCSTR lpszName, ITableInfo** ppTableInfo)$/;" f class:CXTableInfo
@@ -1363,9 +1017,9 @@ CreateInstanceFunc dispatch/src/dispatch.cc /^ void CreateInstanceFunc(const
CreateMessage container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::CreateMessage(IBase** pMsg)$/;" f class:CComRunningObjectTableImpl
CreateNode msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::CreateNode(NODE_CLASS cls, IBase** pBase)$/;" f class:CMsgBusImpl
CreateObject dispatch/src/dispatch.cc /^ void CreateObject(const FunctionCallbackInfo& args) {$/;" f namespace:app
-CreatePlugin container/mainrun.cpp /^std_method_impl CMainRun::CreatePlugin(REFCLSID iid)$/;" f class:CMainRun
+CreatePlugin container/mainrun.cpp /^std_method_impl CMainRun::CreatePlugin(REFCLSID iid, UINT index)$/;" f class:CMainRun
CreateProtocol net/netimpl.cpp /^std_method_impl CNetImpl::CreateProtocol(Net_Protocol np, IBase** pBase)$/;" f class:CNetImpl
-CreateRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::CreateRotPlugin(REFCLSID iid, IBase **ppunk)$/;" f class:CMainRun
+CreateRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::CreateRotPlugin(REFCLSID iid, IBase **ppunk, UINT index)$/;" f class:CMainRun
CreateSChannel include/comutiliy/schannel.hpp /^ std_method_impl CreateSChannel(IBase *pRot) {$/;" f class:SChannel
CreateSock asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::CreateSock()$/;" f class:CTcpListenSocketImpl
CreateSock asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::CreateSock()$/;" f class:CTcpSocketImpl
@@ -1377,9 +1031,9 @@ CreateTaskThread logs/logsimpl.cpp /^std_method_impl CLogsImpl::CreateTaskThread
CreateTcpListenSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTcpListenSocket(IBase** pAsynTcpListenSocket)$/;" f class:CAsynFrameImpl
CreateTcpSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTcpSocket(IBase** pAsynTcpSocket)$/;" f class:CAsynFrameImpl
CreateTimer asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTimer(IBase** pTimer)$/;" f class:CAsynFrameImpl
-CreateTimer include/comutiliy/ctimer.hpp /^ std_method_impl CreateTimer(IBase *pRot) {$/;" f class:CChannel
CreateUdpSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateUdpSocket(IBase** pAsynUdpSocket)$/;" f class:CAsynFrameImpl
CreateUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(void*) CUiWindowsImpl::CreateUiWindow(void* hParentHwnd)$/;" f class:CUiWindowsImpl
+Cstructfunc vim_tool/.vim/plugin/devc.vim /^function s:Cstructfunc(clsname) abort$/;" f
Cte access/sqlite3.c /^ struct Cte { \/* For each CTE in the WITH clause.... *\/$/;" s struct:With file:
Cte logs/sqlite3.c /^ struct Cte { \/* For each CTE in the WITH clause.... *\/$/;" s struct:With file:
Cut uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::Cut()$/;" f class:DuiLib::CRichEditUI
@@ -1397,13 +1051,11 @@ DCOORD access/sqlite3.c 141800;" d file:
DCOORD access/sqlite3.c 141802;" d file:
DCOORD logs/sqlite3.c 141800;" d file:
DCOORD logs/sqlite3.c 141802;" d file:
-DEC CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 544;" d file:
-DEC CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 529;" d file:
DEFAULT_ARENA_BITMAPS polipo/chunk.c 249;" d file:
-DEFAULT_SCROLLBAR_SIZE uibase/uilib/control/uiscrollbar.h /^ DEFAULT_SCROLLBAR_SIZE = 16,$/;" e enum:DuiLib::CScrollBarUI::__anon89
-DEFAULT_TIMERID uibase/uilib/control/uiedit.cpp /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CEditWnd::__anon86 file:
-DEFAULT_TIMERID uibase/uilib/control/uirichedit.h /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CRichEditUI::__anon88
-DEFAULT_TIMERID uibase/uilib/control/uiscrollbar.h /^ DEFAULT_TIMERID = 10,$/;" e enum:DuiLib::CScrollBarUI::__anon89
+DEFAULT_SCROLLBAR_SIZE uibase/uilib/control/uiscrollbar.h /^ DEFAULT_SCROLLBAR_SIZE = 16,$/;" e enum:DuiLib::CScrollBarUI::__anon90
+DEFAULT_TIMERID uibase/uilib/control/uiedit.cpp /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CEditWnd::__anon89 file:
+DEFAULT_TIMERID uibase/uilib/control/uirichedit.h /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CRichEditUI::__anon86
+DEFAULT_TIMERID uibase/uilib/control/uiscrollbar.h /^ DEFAULT_TIMERID = 10,$/;" e enum:DuiLib::CScrollBarUI::__anon90
DEFINES polipo/Makefile /^DEFINES = $(FILE_DEFINES) $(PLATFORM_DEFINES)$/;" m
DEFINE_FFS polipo/chunk.c 226;" d file:
DGRAM_READ_ERROR 3rd/include/iodgram.hpp 6;" d
@@ -1417,45 +1069,45 @@ DIRECT_MODE logs/sqlite3.c 45339;" d file:
DIRENT_INCLUDED polipo/dirent_compat.h 2;" d
DISK_CACHE_ROOT polipo/Makefile /^DISK_CACHE_ROOT = \/var\/cache\/polipo$/;" m
DISK_CACHE_ROOT polipo/diskcache.c 60;" d file:
-DLL_PROCESS_ATTACH compat/darwinossysdef.h 262;" d
-DLL_PROCESS_ATTACH compat/posixossysdef.h 255;" d
-DLL_PROCESS_DETACH compat/darwinossysdef.h 265;" d
-DLL_PROCESS_DETACH compat/posixossysdef.h 258;" d
-DLL_THREAD_ATTACH compat/darwinossysdef.h 263;" d
-DLL_THREAD_ATTACH compat/posixossysdef.h 256;" d
-DLL_THREAD_DETACH compat/darwinossysdef.h 264;" d
-DLL_THREAD_DETACH compat/posixossysdef.h 257;" d
+DLL_PROCESS_ATTACH crt/darwinossysdef.h 262;" d
+DLL_PROCESS_ATTACH crt/posixossysdef.h 255;" d
+DLL_PROCESS_DETACH crt/darwinossysdef.h 265;" d
+DLL_PROCESS_DETACH crt/posixossysdef.h 258;" d
+DLL_THREAD_ATTACH crt/darwinossysdef.h 263;" d
+DLL_THREAD_ATTACH crt/posixossysdef.h 256;" d
+DLL_THREAD_DETACH crt/darwinossysdef.h 264;" d
+DLL_THREAD_DETACH crt/posixossysdef.h 257;" d
DNS_A polipo/dns.h 26;" d
-DNS_CLASS_IN net/protocol/dns.h 28;" d
+DNS_CLASS_IN net/protocol/dns.h 34;" d
DNS_CNAME polipo/dns.h 27;" d
-DNS_NAME_MAXLEN net/protocol/dns.h 30;" d
-DNS_PORT net/protocol/dns.h 11;" d
+DNS_NAME_MAXLEN net/protocol/dns.h 36;" d
+DNS_PORT net/protocol/dns.h 17;" d
DNS_PROC_RES_ERROR extensions/include/net/idns.h 5;" d
DNS_PROC_RES_NOERROR extensions/include/net/idns.h 4;" d
-DNS_QUERY net/protocol/dns.h 13;" d
-DNS_RESPONSE net/protocol/dns.h 14;" d
-DNS_TYPE_A net/protocol/dns.h 16;" d
-DNS_TYPE_AAAA net/protocol/dns.h 24;" d
-DNS_TYPE_ANY net/protocol/dns.h 26;" d
-DNS_TYPE_AXFR net/protocol/dns.h 25;" d
-DNS_TYPE_CNAME net/protocol/dns.h 18;" d
-DNS_TYPE_HINFO net/protocol/dns.h 22;" d
-DNS_TYPE_MX net/protocol/dns.h 23;" d
-DNS_TYPE_NS net/protocol/dns.h 17;" d
-DNS_TYPE_PTR net/protocol/dns.h 21;" d
-DNS_TYPE_SOA net/protocol/dns.h 19;" d
-DNS_TYPE_WKS net/protocol/dns.h 20;" d
+DNS_QUERY net/protocol/dns.h 19;" d
+DNS_RESPONSE net/protocol/dns.h 20;" d
+DNS_TYPE_A net/protocol/dns.h 22;" d
+DNS_TYPE_AAAA net/protocol/dns.h 30;" d
+DNS_TYPE_ANY net/protocol/dns.h 32;" d
+DNS_TYPE_AXFR net/protocol/dns.h 31;" d
+DNS_TYPE_CNAME net/protocol/dns.h 24;" d
+DNS_TYPE_HINFO net/protocol/dns.h 28;" d
+DNS_TYPE_MX net/protocol/dns.h 29;" d
+DNS_TYPE_NS net/protocol/dns.h 23;" d
+DNS_TYPE_PTR net/protocol/dns.h 27;" d
+DNS_TYPE_SOA net/protocol/dns.h 25;" d
+DNS_TYPE_WKS net/protocol/dns.h 26;" d
DOCID_CMP access/sqlite3.c 126399;" d file:
DOCID_CMP logs/sqlite3.c 126399;" d file:
DONT_DELETE_MSG logs/CppSQLite3.cpp /^static const bool DONT_DELETE_MSG=false;$/;" v file:
-DONT_GRIPE compat/compat_sockinet.h 13;" d
+DONT_GRIPE crt/crt_sockinet.h 13;" d
DOTLOCK_SUFFIX access/sqlite3.c 25606;" d file:
DOTLOCK_SUFFIX logs/sqlite3.c 25606;" d file:
-DOUBLE compat/darwinossysdef.h /^typedef double DOUBLE;$/;" t
-DOUBLE compat/posixossysdef.h /^typedef double DOUBLE;$/;" t
+DOUBLE crt/darwinossysdef.h /^typedef double DOUBLE;$/;" t
+DOUBLE crt/posixossysdef.h /^typedef double DOUBLE;$/;" t
DO_BACKTRACE polipo/log.h 70;" d
DO_BACKTRACE polipo/log.h 79;" d
-DO_GRIPE compat/compat_sockinet.h 14;" d
+DO_GRIPE crt/crt_sockinet.h 14;" d
DO_HTONL polipo/dns.c 1382;" d file:
DO_HTONL polipo/dns.c 1396;" d file:
DO_HTONS polipo/dns.c 1381;" d file:
@@ -1592,10 +1244,11 @@ DWM_BLURBEHIND uibase/uilib/dwm.hpp /^} DWM_BLURBEHIND;$/;" t typeref:struct:DWM
DWM_EC_DISABLECOMPOSITION uibase/uilib/dwm.hpp 65;" d
DWM_EC_ENABLECOMPOSITION uibase/uilib/dwm.hpp 66;" d
DWM_MARGINS uibase/uilib/dwm.hpp /^} DWM_MARGINS, *PDWM_MARGINS;$/;" t typeref:struct:tagDWL_MARGINS
-DWORD compat/darwinossysdef.h /^typedef unsigned long DWORD;$/;" t
-DWORD compat/posixossysdef.h /^typedef unsigned long DWORD;$/;" t
+DWORD crt/darwinossysdef.h /^typedef unsigned long DWORD;$/;" t
+DWORD crt/posixossysdef.h /^typedef unsigned long DWORD;$/;" t
DXtoHimetricX uibase/uilib/control/uirichedit.cpp /^LONG DXtoHimetricX(LONG dx, LONG xPerInch)$/;" f namespace:DuiLib
DYNAMIC_NAME_LEN include/dlcom/cominc.h 4;" d
+DYN_COMPOENT include/dlcom/icombase.h 102;" d
DYtoHimetricY uibase/uilib/control/uirichedit.cpp /^LONG DYtoHimetricY(LONG dy, LONG yPerInch)$/;" f namespace:DuiLib
D_ATOM_REFCOUNT polipo/log.h 36;" d
D_CHILD polipo/log.h 44;" d
@@ -1612,10 +1265,10 @@ D_SERVER_CONN polipo/log.h 32;" d
D_SERVER_OFFSET polipo/log.h 41;" d
D_SERVER_REQ polipo/log.h 33;" d
Data uibase/uilib/utils/utils.cpp /^ LPVOID Data;$/;" m struct:DuiLib::TITEM file:
-Data1 compat/compat_guid.hpp /^ unsigned int Data1;$/;" m struct:_GUID
-Data2 compat/compat_guid.hpp /^ unsigned short Data2;$/;" m struct:_GUID
-Data3 compat/compat_guid.hpp /^ unsigned short Data3;$/;" m struct:_GUID
-Data4 compat/compat_guid.hpp /^ unsigned char Data4[ 8 ];$/;" m struct:_GUID
+Data1 crt/crt_guid.hpp /^ unsigned int Data1;$/;" m struct:_GUID
+Data2 crt/crt_guid.hpp /^ unsigned short Data2;$/;" m struct:_GUID
+Data3 crt/crt_guid.hpp /^ unsigned short Data3;$/;" m struct:_GUID
+Data4 crt/crt_guid.hpp /^ unsigned char Data4[ 8 ];$/;" m struct:_GUID
DateTime access/sqlite3.c /^struct DateTime {$/;" s file:
DateTime access/sqlite3.c /^typedef struct DateTime DateTime;$/;" t typeref:struct:DateTime file:
DateTime logs/sqlite3.c /^struct DateTime {$/;" s file:
@@ -1640,7 +1293,7 @@ DbSetProperty access/sqlite3.c 10153;" d file:
DbSetProperty logs/sqlite3.c 10153;" d file:
Deephemeralize access/sqlite3.c 66496;" d file:
Deephemeralize logs/sqlite3.c 66496;" d file:
-DefineDllCanUnloadNow include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllCanUnloadNow)(void);$/;" t
+DefineDllCanUnloadNow include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllCanUnloadNow)(void);$/;" t
DefineDllGetAt include/dlcom/comfunc.hpp /^typedef CLSID(OS_STDCALL *DefineDllGetAt)(LONG nIndex);$/;" t
DefineDllGetClassObject include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllGetClassObject)(REFCLSID rclsid, REFIID riid, LPVOID* ppv);$/;" t
DefineDllGetCount include/dlcom/comfunc.hpp /^typedef LONG(OS_STDCALL *DefineDllGetCount)();$/;" t
@@ -1651,9 +1304,12 @@ DefineDllStopServer include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *Defi
DefineDllUnregisterServer include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllUnregisterServer)(void);$/;" t
Deflate uibase/uilib/utils/utils.cpp /^ void CDuiRect::Deflate(int cx, int cy)$/;" f class:DuiLib::CDuiRect
Del uibase/uimessageloopimpl.cpp /^std_method_impl CUiMessageloopImpl::Del(IUIWindow* pBase)$/;" f class:CUiMessageloopImpl
+DelObject container/mainrun.cpp /^std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)$/;" f class:CMainRun
Delete uibase/uilib/core/uicontrol.cpp /^ void CControlUI::Delete()$/;" f class:DuiLib::CControlUI
+DeleteFile vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:DeleteFile() range$/;" f
DeleteGif uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::DeleteGif()$/;" f class:DuiLib::CGifAnimUI
DestoryInstanceFunc dispatch/src/dispatch.cc /^ void DestoryInstanceFunc(const FunctionCallbackInfo& args) {$/;" f namespace:app
+DestroyAllRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::DestroyAllRotPlugin()$/;" f class:CMainRun
DestroyRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::DestroyRotPlugin(REFCLSID iid)$/;" f class:CMainRun
DestroyUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::DestroyUiWindow()$/;" f class:CUiWindowsImpl
Detach include/comutiliy/serialize.hpp /^ std_method_impl Detach()$/;" f class:Serialize
@@ -1669,6 +1325,9 @@ DiskCacheEntryRec polipo/diskcache.h /^} *DiskCacheEntryPtr, DiskCacheEntryRec;$
DiskObjectPtr polipo/diskcache.h /^} DiskObjectRec, *DiskObjectPtr;$/;" t typeref:struct:_DiskObject
DiskObjectRec polipo/diskcache.h /^} DiskObjectRec, *DiskObjectPtr;$/;" t typeref:struct:_DiskObject
Dispatch msgbus/broker.cpp /^std_method_impl CBrokerImpl::Dispatch(unsigned int sec)$/;" f class:CBrokerImpl
+DisplayError vim_tool/.vim/plugin/wintagexplorer.vim /^function! DisplayError()$/;" f
+DisplayIncludeTree vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:DisplayIncludeTree(szFilePath, indent, ...)$/;" f
+DisplayTagsFile vim_tool/.vim/plugin/wintagexplorer.vim /^function! DisplayTagsFile()$/;" f
DistinctCtx access/sqlite3.c /^struct DistinctCtx {$/;" s file:
DistinctCtx access/sqlite3.c /^typedef struct DistinctCtx DistinctCtx;$/;" t typeref:struct:DistinctCtx file:
DistinctCtx logs/sqlite3.c /^struct DistinctCtx {$/;" s file:
@@ -1676,7 +1335,6 @@ DistinctCtx logs/sqlite3.c /^typedef struct DistinctCtx DistinctCtx;$/;" t typer
DllCanUnloadNow access/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
DllCanUnloadNow asynio/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
DllCanUnloadNow container/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
-DllCanUnloadNow http/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
DllCanUnloadNow include/dlcom/loadcom.hpp /^ DefineDllCanUnloadNow DllCanUnloadNow;$/;" m class:CComLoader
DllCanUnloadNow logs/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
DllCanUnloadNow mainview/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f
@@ -1693,7 +1351,6 @@ DllGetAtFuncName include/dlcom/comfunc.hpp 12;" d
DllGetClassObject access/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
DllGetClassObject asynio/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
DllGetClassObject container/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
-DllGetClassObject http/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
DllGetClassObject include/dlcom/loadcom.hpp /^ DefineDllGetClassObject DllGetClassObject;$/;" m class:CComLoader
DllGetClassObject logs/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
DllGetClassObject mainview/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f
@@ -1711,7 +1368,6 @@ DllMain access/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain asynio/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain container/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain dispatch/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
-DllMain http/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain license/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain logs/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
DllMain mainview/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f
@@ -1727,7 +1383,6 @@ DllProgIDFromCLSIDFuncName include/dlcom/comfunc.hpp 18;" d
DllRegisterServer access/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
DllRegisterServer asynio/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
DllRegisterServer container/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
-DllRegisterServer http/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
DllRegisterServer include/dlcom/loadcom.hpp /^ DefineDllRegisterServer DllRegisterServer;$/;" m class:CComLoader
DllRegisterServer logs/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
DllRegisterServer mainview/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f
@@ -1742,7 +1397,6 @@ DllRegisterServerFuncName include/dlcom/comfunc.hpp 24;" d
DllStartServer access/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
DllStartServer asynio/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
DllStartServer container/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
-DllStartServer http/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
DllStartServer include/dlcom/loadcom.hpp /^ DefineDllStartServer DllStartServer;$/;" m class:CComLoader
DllStartServer logs/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
DllStartServer mainview/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f
@@ -1757,7 +1411,6 @@ DllStartServerFuncName include/dlcom/comfunc.hpp 30;" d
DllStopServer access/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
DllStopServer asynio/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
DllStopServer container/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
-DllStopServer http/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
DllStopServer include/dlcom/loadcom.hpp /^ DefineDllStopServer DllStopServer;$/;" m class:CComLoader
DllStopServer logs/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
DllStopServer mainview/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f
@@ -1772,7 +1425,6 @@ DllStopServerFuncName include/dlcom/comfunc.hpp 33;" d
DllUnregisterServer access/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
DllUnregisterServer asynio/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
DllUnregisterServer container/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
-DllUnregisterServer http/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
DllUnregisterServer include/dlcom/loadcom.hpp /^ DefineDllUnregisterServer DllUnregisterServer;$/;" m class:CComLoader
DllUnregisterServer logs/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
DllUnregisterServer mainview/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f
@@ -1832,6 +1484,7 @@ DoPostPaint uibase/uilib/layout/uiverticallayout.cpp /^ void CVerticalLayoutUI::
DoSetCursor uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::DoSetCursor(RECT *prc, POINT *pt)$/;" f class:DuiLib::CTxtWinHost
DomainPtr polipo/forbidden.c /^} DomainRec, *DomainPtr;$/;" t typeref:struct:_Domain file:
DomainRec polipo/forbidden.c /^} DomainRec, *DomainPtr;$/;" t typeref:struct:_Domain file:
+DoubleClick vim_tool/.vim/plugin/winfileexplorer.vim /^function s:DoubleClick()$/;" f
DrawColor uibase/uilib/core/uirender.cpp /^void CRenderEngine::DrawColor(HDC hDC, const RECT& rc, DWORD color)$/;" f class:DuiLib::CRenderEngine
DrawFrame uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::DrawFrame(HDC hDC)$/;" f class:DuiLib::CGifAnimUI
DrawGradient uibase/uilib/core/uirender.cpp /^void CRenderEngine::DrawGradient(HDC hDC, const RECT& rc, DWORD dwFirst, DWORD dwSecond, bool bVertical, int nSteps)$/;" f class:DuiLib::CRenderEngine
@@ -1947,11 +1600,11 @@ EINPROGRESS polipo/mingw.h 86;" d
EINPROGRESS polipo/mingw.h 98;" d
EISCONN polipo/mingw.h 89;" d
EISCONN polipo/mingw.h 99;" d
-ELEM_AT http/http/http_parser.cpp 47;" d file:
+ELEM_AT net/http_protocol/http_parser.cpp 47;" d file:
EMPTY_BITMAP polipo/chunk.c 284;" d file:
ENC access/sqlite3.c 10337;" d file:
ENC logs/sqlite3.c 10337;" d file:
-END_STDCOM_MAP include/dlcom/comfunc.hpp 101;" d
+END_STDCOM_MAP include/dlcom/comfunc.hpp 100;" d
ENOBUFS polipo/mingw.h 74;" d
ENOBUFS polipo/mingw.h 93;" d
ENOTCONN polipo/mingw.h 68;" d
@@ -1996,28 +1649,10 @@ EP_VarSelect access/sqlite3.c 11169;" d file:
EP_VarSelect logs/sqlite3.c 11169;" d file:
EP_xIsSelect access/sqlite3.c 11175;" d file:
EP_xIsSelect logs/sqlite3.c 11175;" d file:
-EQUALS Makefile /^EQUALS = =$/;" m
-EQUALS access/Makefile /^EQUALS = =$/;" m
-EQUALS asynio/Makefile /^EQUALS = =$/;" m
-EQUALS base/Makefile /^EQUALS = =$/;" m
-EQUALS base_test/Makefile /^EQUALS = =$/;" m
-EQUALS container/Makefile /^EQUALS = =$/;" m
-EQUALS dispatch/Makefile /^EQUALS = =$/;" m
-EQUALS guidgen/Makefile /^EQUALS = =$/;" m
-EQUALS http/Makefile /^EQUALS = =$/;" m
-EQUALS license/Makefile /^EQUALS = =$/;" m
-EQUALS logs/Makefile /^EQUALS = =$/;" m
-EQUALS main/Makefile /^EQUALS = =$/;" m
-EQUALS mainview/Makefile /^EQUALS = =$/;" m
-EQUALS mempool/Makefile /^EQUALS = =$/;" m
-EQUALS msgbus/Makefile /^EQUALS = =$/;" m
-EQUALS net/Makefile /^EQUALS = =$/;" m
-EQUALS render/Makefile /^EQUALS = =$/;" m
-EQUALS testmain/Makefile /^EQUALS = =$/;" m
EREDIRECTOR polipo/util.h 37;" d
-ERRNO base/compat_error.c 11;" d file:
-ERRNO base/compat_error.c 16;" d file:
-ERRNO base/compat_error.c 6;" d file:
+ERRNO stdcrt/compat_error.c 11;" d file:
+ERRNO stdcrt/compat_error.c 16;" d file:
+ERRNO stdcrt/compat_error.c 6;" d file:
ERROR_CODE extensions/include/io/ioperation.h /^typedef ULONG ERROR_CODE;$/;" t
ESHUTDOWN polipo/mingw.h 95;" d
ESOCKS5_BASE polipo/util.h 53;" d
@@ -2041,20 +1676,24 @@ EXPR_REDUCEDSIZE access/sqlite3.c 11210;" d file:
EXPR_REDUCEDSIZE logs/sqlite3.c 11210;" d file:
EXPR_TOKENONLYSIZE access/sqlite3.c 11211;" d file:
EXPR_TOKENONLYSIZE logs/sqlite3.c 11211;" d file:
-EXTERN_C compat/compat_common.hpp 70;" d
-EXTERN_C compat/compat_common.hpp 83;" d
+EXTERN_C crt/crt_common.hpp 70;" d
+EXTERN_C crt/crt_common.hpp 83;" d
EXTRA_SIZE access/sqlite3.c 50035;" d file:
EXTRA_SIZE logs/sqlite3.c 50035;" d file:
-E_FAIL compat/compat_comutil.hpp 73;" d
-E_FAIL compat/compat_comutil.hpp 80;" d
-E_INVALIDARG compat/compat_comutil.hpp 71;" d
-E_INVALIDARG compat/compat_comutil.hpp 78;" d
-E_NOINTERFACE compat/compat_comutil.hpp 72;" d
-E_NOINTERFACE compat/compat_comutil.hpp 79;" d
-E_NOTIMPL compat/compat_comutil.hpp 69;" d
-E_NOTIMPL compat/compat_comutil.hpp 76;" d
-E_OUTOFMEMORY compat/compat_comutil.hpp 70;" d
-E_OUTOFMEMORY compat/compat_comutil.hpp 77;" d
+E_FAIL crt/crt_comutil.hpp 73;" d
+E_FAIL crt/crt_comutil.hpp 80;" d
+E_INVALIDARG crt/crt_comutil.hpp 71;" d
+E_INVALIDARG crt/crt_comutil.hpp 78;" d
+E_NOINTERFACE crt/crt_comutil.hpp 72;" d
+E_NOINTERFACE crt/crt_comutil.hpp 79;" d
+E_NOTIMPL crt/crt_comutil.hpp 69;" d
+E_NOTIMPL crt/crt_comutil.hpp 76;" d
+E_OUTOFMEMORY crt/crt_comutil.hpp 70;" d
+E_OUTOFMEMORY crt/crt_comutil.hpp 77;" d
+EditDir vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EditDir(...)$/;" f
+EditDir vim_tool/.vim/plugin/winmanager.vim /^function! EditDir(event)$/;" f
+EditEntry vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EditEntry(movefirst,editcmd)$/;" f
+EditNextVisibleExplorer vim_tool/.vim/plugin/winmanager.vim /^function! EditNextVisibleExplorer(grpn, memn, dir, editcmd)$/;" f
Empty uibase/uilib/utils/utils.cpp /^ void CDuiPtrArray::Empty()$/;" f class:DuiLib::CDuiPtrArray
Empty uibase/uilib/utils/utils.cpp /^ void CDuiRect::Empty()$/;" f class:DuiLib::CDuiRect
Empty uibase/uilib/utils/utils.cpp /^ void CDuiString::Empty() $/;" f class:DuiLib::CDuiString
@@ -2077,6 +1716,7 @@ EndRight uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::EndRight()$/;"
EnsureVisible uibase/uilib/control/uicombo.cpp /^void CComboWnd::EnsureVisible(int iIndex)$/;" f class:DuiLib::CComboWnd
EnsureVisible uibase/uilib/control/uilist.cpp /^void CListUI::EnsureVisible(int iIndex)$/;" f class:DuiLib::CListUI
Equals uibase/uilib/utils/uidelegate.cpp /^bool CDelegateBase::Equals(const CDelegateBase& rhs) const $/;" f class:DuiLib::CDelegateBase
+EscapeFilename vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EscapeFilename(name)$/;" f
EstimateSize uibase/uilib/control/uibutton.cpp /^ SIZE CButtonUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CButtonUI
EstimateSize uibase/uilib/control/uicombo.cpp /^SIZE CComboUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CComboUI
EstimateSize uibase/uilib/control/uiedit.cpp /^ SIZE CEditUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CEditUI
@@ -2097,7 +1737,7 @@ ExeCommand logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::ExeCommand(L
ExeSql logs/database.cpp /^std_method_impl CDatabase::ExeSql(LPCSTR sql)$/;" f class:CDatabase
Execute access/statement.cpp /^std_method_type_impl(int) CStatementImpl::Execute(LPCSTR lpszSQL, UINT ulen)$/;" f class:CStatementImpl
Exit dispatch/src/loadcontainer.cc /^int CLoadContainer::Exit(_pinstance hinstance, UINT exit)$/;" f class:CLoadContainer
-ExitContainer include/dlcom/objectrun.hpp /^ int ExitContainer(_pinstance instance, UINT exit) {$/;" f class:CContainer
+ExitContainer include/dlcom/objectrun.hpp /^ HRESULT ExitContainer(_pinstance instance, UINT exit) {$/;" f class:CContainer
Exit_Thread include/utilex/semthread.hpp /^ HRESULT Exit_Thread() {$/;" f class:CSemThread
Exit_Thread include/utilex/timethread.hpp /^ HRESULT Exit_Thread() {$/;" f class:CTimeThread
Expand uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::Expand(bool bExpand)$/;" f class:DuiLib::CListContainerElementUI
@@ -2139,17 +1779,24 @@ ExprSpan access/sqlite3.c /^typedef struct ExprSpan ExprSpan;$/;" t typeref:stru
ExprSpan logs/sqlite3.c /^struct ExprSpan {$/;" s file:
ExprSpan logs/sqlite3.c /^typedef struct ExprSpan ExprSpan;$/;" t typeref:struct:ExprSpan file:
ExtendFrameIntoClientArea uibase/uilib/dwm.hpp /^ BOOL ExtendFrameIntoClientArea(HWND hWnd, CONST DWM_MARGINS& Margins)$/;" f class:CDwm
-F base/algorithm/compat_md5.c 3;" d file:
+ExtendTagItemToPopupItem vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:ExtendTagItemToPopupItem(tagItem, szTypeName)$/;" f
+ExtractFileDate vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileDate(line)$/;" f
+ExtractFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileName(line)$/;" f
+ExtractFileSize vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileSize(line)$/;" f
+ExtractFullFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFullFileName(line)$/;" f
+ExtractScopeFromTypeInfo vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:ExtractScopeFromTypeInfo(szTypeInfo)$/;" f
+ExtractTypeInfoFromDecl vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ExtractTypeInfoFromDecl(tokens)$/;" f
F polipo/md5.c 73;" d file:
+F stdcrt/algorithm/compat_md5.c 3;" d file:
FABS access/sqlite3.c 143392;" d file:
FABS logs/sqlite3.c 143392;" d file:
FADE_ELLAPSE uibase/uilib/control/uibutton.h /^ FADE_ELLAPSE = 30,$/;" e enum:DuiLib::CButtonUI::__anon85
FADE_TIMERID uibase/uilib/control/uibutton.h /^ FADE_TIMERID = 11,$/;" e enum:DuiLib::CButtonUI::__anon85
-FALSE compat/darwinossysdef.h 7;" d
-FALSE compat/posixossysdef.h 7;" d
+FALSE crt/darwinossysdef.h 7;" d
+FALSE crt/posixossysdef.h 7;" d
FAST_BITS uibase/uilib/utils/stb_image.c 1435;" d file:
-FF base/algorithm/compat_md5.c 8;" d file:
FF polipo/md5.c 96;" d file:
+FF stdcrt/algorithm/compat_md5.c 8;" d file:
FF_AUTO_INCREMENT extensions/include/db/idatabase.h /^ FF_AUTO_INCREMENT = 0x00000080,$/;" e enum:eFIELD_FLAG
FF_BINARY extensions/include/db/idatabase.h /^ FF_BINARY = 0x00000040,$/;" e enum:eFIELD_FLAG
FF_MULTIPLE_KEY extensions/include/db/idatabase.h /^ FF_MULTIPLE_KEY = 0x00000008,$/;" e enum:eFIELD_FLAG
@@ -2168,31 +1815,31 @@ FIELD_NAME_LEN extensions/include/log/ilogdatabase.h 7;" d
FIELD_PK_INDEX access/dbimpl.h /^ FIELD_PK_INDEX = 5,$/;" e enum:eFIELD_INDEX
FIELD_TYPE extensions/include/db/idatabase.h /^}FIELD_TYPE;$/;" t typeref:enum:eFIELD_TYPE
FIELD_TYPE_INDEX access/dbimpl.h /^ FIELD_TYPE_INDEX = 2,$/;" e enum:eFIELD_INDEX
-FIELD_TYPE_INT logs/stdafx.h 31;" d
+FIELD_TYPE_INT logs/stdafx.h 30;" d
FIELD_TYPE_LEN extensions/include/log/ilogdatabase.h 8;" d
-FIELD_TYPE_STRING logs/stdafx.h 30;" d
-FILED_ID logs/stdafx.h 36;" d
-FILED_L_TIME logs/stdafx.h 38;" d
-FILED_SQL_LEN logs/stdafx.h 34;" d
-FILED_S_TIME logs/stdafx.h 37;" d
-FILED_TYPE_PRIMARYKEY logs/stdafx.h 33;" d
+FIELD_TYPE_STRING logs/stdafx.h 29;" d
+FILED_ID logs/stdafx.h 35;" d
+FILED_L_TIME logs/stdafx.h 37;" d
+FILED_SQL_LEN logs/stdafx.h 33;" d
+FILED_S_TIME logs/stdafx.h 36;" d
+FILED_TYPE_PRIMARYKEY logs/stdafx.h 32;" d
FILEHANDLEID access/sqlite3.c 39525;" d file:
FILEHANDLEID logs/sqlite3.c 39525;" d file:
-FILETIME compat/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME
-FILETIME compat/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME
+FILETIME crt/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME
+FILETIME crt/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME
FILE_ATTRIBUTE_MASK access/sqlite3.c 31460;" d file:
FILE_ATTRIBUTE_MASK logs/sqlite3.c 31460;" d file:
FILE_DEFINES polipo/Makefile /^FILE_DEFINES = -DLOCAL_ROOT=\\"$(LOCAL_ROOT)\/\\" \\$/;" m
FILE_FLAG_MASK access/sqlite3.c 31456;" d file:
FILE_FLAG_MASK logs/sqlite3.c 31456;" d file:
-FILE_HANDLE compat/compat_file.h 19;" d
-FILE_HANDLE compat/compat_file.h 24;" d
-FILE_HANDLE compat/compat_file.h 29;" d
-FILE_INVALID compat/compat_file.h 20;" d
-FILE_INVALID compat/compat_file.h 25;" d
-FILE_INVALID compat/compat_file.h 30;" d
-FILE_MAX_PATH base/io/compat_path.c 210;" d file:
-FILE_MAX_PATH base/io/compat_path.c 264;" d file:
+FILE_HANDLE crt/crt_file.h 19;" d
+FILE_HANDLE crt/crt_file.h 24;" d
+FILE_HANDLE crt/crt_file.h 29;" d
+FILE_INVALID crt/crt_file.h 20;" d
+FILE_INVALID crt/crt_file.h 25;" d
+FILE_INVALID crt/crt_file.h 30;" d
+FILE_MAX_PATH stdcrt/io/compat_path.c 215;" d file:
+FILE_MAX_PATH stdcrt/io/compat_path.c 269;" d file:
FINDCONTROLPROC uibase/uilib/core/uicontrol.h /^typedef CControlUI* (CALLBACK* FINDCONTROLPROC)(CControlUI*, LPVOID);$/;" t namespace:DuiLib
FINDSHORTCUT uibase/uilib/core/uimanager.cpp /^} FINDSHORTCUT;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagFINDSHORTCUT file:
FINDTABINFO uibase/uilib/core/uimanager.cpp /^} FINDTABINFO;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagFINDTABINFO file:
@@ -2206,15 +1853,15 @@ FLAG_SIGNED access/sqlite3.c 19970;" d file:
FLAG_SIGNED logs/sqlite3.c 19970;" d file:
FLAG_STRING access/sqlite3.c 19972;" d file:
FLAG_STRING logs/sqlite3.c 19972;" d file:
-FLOAT compat/darwinossysdef.h /^typedef float FLOAT;$/;" t
-FLOAT compat/posixossysdef.h /^typedef float FLOAT;$/;" t
-FMTID compat/compat_guid.hpp /^typedef GUID FMTID;$/;" t
-FMTID_NULL compat/compat_guid.hpp 51;" d
-FMT_I64D compat/posixosdef.h 20;" d
-FMT_I64D compat/winosdef.h 12;" d
-FMT_I64U compat/posixosdef.h 23;" d
-FMT_I64U compat/posixosdef.h 25;" d
-FMT_I64U compat/winosdef.h 13;" d
+FLOAT crt/darwinossysdef.h /^typedef float FLOAT;$/;" t
+FLOAT crt/posixossysdef.h /^typedef float FLOAT;$/;" t
+FMTID crt/crt_guid.hpp /^typedef GUID FMTID;$/;" t
+FMTID_NULL crt/crt_guid.hpp 51;" d
+FMT_I64D crt/posixosdef.h 20;" d
+FMT_I64D crt/winosdef.h 12;" d
+FMT_I64U crt/posixosdef.h 23;" d
+FMT_I64U crt/posixosdef.h 25;" d
+FMT_I64U crt/winosdef.h 13;" d
FNDWMENABLECOMPOSITION uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMENABLECOMPOSITION)(UINT);$/;" t class:CDwm
FNDWMEXTENDFRAMEINTOCLIENTAREA uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMEXTENDFRAMEINTOCLIENTAREA)(HWND, CONST DWM_MARGINS*);$/;" t class:CDwm
FNDWMSETWINDOWATTRIBUTE uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMSETWINDOWATTRIBUTE)(HWND, DWORD, LPCVOID pvAttribute, DWORD);$/;" t class:CDwm
@@ -2225,19 +1872,19 @@ FNSETPROCESSDPIAWARE uibase/uilib/dpi.hpp /^ typedef BOOL(WINAPI *FNSETPROCESSDP
FNSETPROCESSDPIAWARENESS uibase/uilib/dpi.hpp /^ typedef HRESULT(WINAPI *FNSETPROCESSDPIAWARENESS)(PROCESS_DPI_AWARENESS);$/;" t class:CDPI
FOREGUARD access/sqlite3.c 16344;" d file:
FOREGUARD logs/sqlite3.c 16344;" d file:
-FTP_APPEND net/protocol/ftp.h 63;" d
+FTP_APPEND net/protocol/ftp.h 68;" d
FTP_COMMAND_MAP net/protocol/ftp.h /^ FTP_COMMAND_MAP(X)$/;" e enum:ftp_command
-FTP_COMMAND_MAP net/protocol/ftp.h 12;" d
-FTP_COMMAND_PORT net/protocol/ftp.h 7;" d
-FTP_DATA_PORT net/protocol/ftp.h 8;" d
-FTP_DOWNLOAD net/protocol/ftp.h 65;" d
-FTP_MKDIR net/protocol/ftp.h 61;" d
-FTP_RECV_BUFSIZE net/protocol/ftp.h 68;" d
-FTP_REMOVE net/protocol/ftp.h 64;" d
-FTP_RMDIR net/protocol/ftp.h 62;" d
+FTP_COMMAND_MAP net/protocol/ftp.h 17;" d
+FTP_COMMAND_PORT net/protocol/ftp.h 12;" d
+FTP_DATA_PORT net/protocol/ftp.h 13;" d
+FTP_DOWNLOAD net/protocol/ftp.h 70;" d
+FTP_MKDIR net/protocol/ftp.h 66;" d
+FTP_RECV_BUFSIZE net/protocol/ftp.h 73;" d
+FTP_REMOVE net/protocol/ftp.h 69;" d
+FTP_RMDIR net/protocol/ftp.h 67;" d
FTP_STATUS_MAP net/protocol/ftp.h /^ FTP_STATUS_MAP(XXX)$/;" e enum:ftp_status
-FTP_STATUS_MAP net/protocol/ftp.h 43;" d
-FTP_UPLOAD net/protocol/ftp.h 66;" d
+FTP_STATUS_MAP net/protocol/ftp.h 48;" d
+FTP_UPLOAD net/protocol/ftp.h 71;" d
FTS polipo/fts_compat.h /^typedef struct _FTS FTS;$/;" t typeref:struct:_FTS
FTS3_AUX_SCHEMA access/sqlite3.c 129827;" d file:
FTS3_AUX_SCHEMA logs/sqlite3.c 129827;" d file:
@@ -2398,14 +2045,14 @@ FUNCTION2 access/sqlite3.c 10514;" d file:
FUNCTION2 logs/sqlite3.c 10514;" d file:
FUNC_PERFECT_MATCH access/sqlite3.c 88620;" d file:
FUNC_PERFECT_MATCH logs/sqlite3.c 88620;" d file:
-F_CHUNKED http/http/http_parser.h /^ { F_CHUNKED = 1 << 0$/;" e enum:flags
-F_CONNECTION_CLOSE http/http/http_parser.h /^ , F_CONNECTION_CLOSE = 1 << 2$/;" e enum:flags
-F_CONNECTION_KEEP_ALIVE http/http/http_parser.h /^ , F_CONNECTION_KEEP_ALIVE = 1 << 1$/;" e enum:flags
-F_CONNECTION_UPGRADE http/http/http_parser.h /^ , F_CONNECTION_UPGRADE = 1 << 3$/;" e enum:flags
-F_CONTENTLENGTH http/http/http_parser.h /^ , F_CONTENTLENGTH = 1 << 7$/;" e enum:flags
-F_SKIPBODY http/http/http_parser.h /^ , F_SKIPBODY = 1 << 6$/;" e enum:flags
-F_TRAILING http/http/http_parser.h /^ , F_TRAILING = 1 << 4$/;" e enum:flags
-F_UPGRADE http/http/http_parser.h /^ , F_UPGRADE = 1 << 5$/;" e enum:flags
+F_CHUNKED net/http_protocol/http_parser.h /^ { F_CHUNKED = 1 << 0$/;" e enum:flags
+F_CONNECTION_CLOSE net/http_protocol/http_parser.h /^ , F_CONNECTION_CLOSE = 1 << 2$/;" e enum:flags
+F_CONNECTION_KEEP_ALIVE net/http_protocol/http_parser.h /^ , F_CONNECTION_KEEP_ALIVE = 1 << 1$/;" e enum:flags
+F_CONNECTION_UPGRADE net/http_protocol/http_parser.h /^ , F_CONNECTION_UPGRADE = 1 << 3$/;" e enum:flags
+F_CONTENTLENGTH net/http_protocol/http_parser.h /^ , F_CONTENTLENGTH = 1 << 7$/;" e enum:flags
+F_SKIPBODY net/http_protocol/http_parser.h /^ , F_SKIPBODY = 1 << 6$/;" e enum:flags
+F_TRAILING net/http_protocol/http_parser.h /^ , F_TRAILING = 1 << 4$/;" e enum:flags
+F_UPGRADE net/http_protocol/http_parser.h /^ , F_UPGRADE = 1 << 5$/;" e enum:flags
FdEventHandlerPokePtr polipo/event.c /^} FdEventHandlerPokeRec, *FdEventHandlerPokePtr;$/;" t typeref:struct:_FdEventHandlerPoke file:
FdEventHandlerPokeRec polipo/event.c /^} FdEventHandlerPokeRec, *FdEventHandlerPokePtr;$/;" t typeref:struct:_FdEventHandlerPoke file:
FdEventHandlerPtr polipo/event.h /^} FdEventHandlerRec, *FdEventHandlerPtr;$/;" t typeref:struct:_FdEventHandler
@@ -2415,17 +2062,30 @@ FileChunk access/sqlite3.c /^struct FileChunk {$/;" s file:
FileChunk access/sqlite3.c /^typedef struct FileChunk FileChunk;$/;" t typeref:struct:FileChunk file:
FileChunk logs/sqlite3.c /^struct FileChunk {$/;" s file:
FileChunk logs/sqlite3.c /^typedef struct FileChunk FileChunk;$/;" t typeref:struct:FileChunk file:
+FileDateCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileDateCmp(line1, line2, direction)$/;" f
+FileExplorer_IsValid vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_IsValid()$/;" f
+FileExplorer_Start vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_Start()$/;" f
+FileExplorer_WrapUp vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_WrapUp()$/;" f
+FileExplorer_title vim_tool/.vim/plugin/winfileexplorer.vim /^let g:FileExplorer_title = "[File List]"$/;" v
FileHandlePtr include/utilex/safeptr.hpp 173;" d
-FileIsExist base/io/compat_path.c /^int FileIsExist(const basic_tchar* lpFile)$/;" f
+FileIsExist stdcrt/io/compat_path.c /^int FileIsExist(const basic_tchar* lpFile)$/;" f
+FileModDate vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileModDate(name)$/;" f
+FileNameCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileNameCmp(line1, line2, direction)$/;" f
FilePoint access/sqlite3.c /^struct FilePoint {$/;" s file:
FilePoint access/sqlite3.c /^typedef struct FilePoint FilePoint;$/;" t typeref:struct:FilePoint file:
FilePoint logs/sqlite3.c /^struct FilePoint {$/;" s file:
FilePoint logs/sqlite3.c /^typedef struct FilePoint FilePoint;$/;" t typeref:struct:FilePoint file:
+FileSizeCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileSizeCmp(line1, line2, direction)$/;" f
FileWriter access/sqlite3.c /^struct FileWriter {$/;" s file:
FileWriter access/sqlite3.c /^typedef struct FileWriter FileWriter;$/;" t typeref:struct:FileWriter file:
FileWriter logs/sqlite3.c /^struct FileWriter {$/;" s file:
FileWriter logs/sqlite3.c /^typedef struct FileWriter FileWriter;$/;" t typeref:struct:FileWriter file:
FiltPtr include/comutiliy/asynio.h /^typedef _lComPtr FiltPtr;$/;" t
+FilterClassMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterClassMembers(tagPopupList, szAccessFilter)$/;" f
+FilterClassScopeMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterClassScopeMembers(tagPopupList, szAccessFilter)$/;" f
+FilterNamespaceScopeMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterNamespaceScopeMembers(tagPopupList)$/;" f
+FilterOverloadedFunctions vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterOverloadedFunctions(tagPopupList)$/;" f
+FilterStaticClassMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterStaticClassMembers(tagPopupList, szAccessFilter)$/;" f
Find uibase/uilib/utils/utils.cpp /^ LPVOID CDuiStringPtrMap::Find(LPCTSTR key, bool optimize) const$/;" f class:DuiLib::CDuiStringPtrMap
Find uibase/uilib/utils/utils.cpp /^ int CDuiPtrArray::Find(LPVOID pData) const$/;" f class:DuiLib::CDuiPtrArray
Find uibase/uilib/utils/utils.cpp /^ int CDuiString::Find(LPCTSTR pstrSub, int iPos \/*= 0*\/) const$/;" f class:DuiLib::CDuiString
@@ -2435,10 +2095,12 @@ FindControl uibase/uilib/core/uicontainer.cpp /^ CControlUI* CContainerUI::FindC
FindControl uibase/uilib/core/uicontrol.cpp /^ CControlUI* CControlUI::FindControl(FINDCONTROLPROC Proc, LPVOID pData, UINT uFlags)$/;" f class:DuiLib::CControlUI
FindControl uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindControl(LPCTSTR pstrName) const$/;" f class:DuiLib::CPaintManagerUI
FindControl uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindControl(POINT pt) const$/;" f class:DuiLib::CPaintManagerUI
+FindExplorerInGroup vim_tool/.vim/plugin/winmanager.vim /^function! FindExplorerInGroup(groupn, memn)$/;" f
FindFileHandlePtr include/utilex/safeptr.hpp 185;" d
FindIndexControl uibase/uicontrolimpl.cpp /^std_method_type_impl(IUIControl*) CUiControlImpl::FindIndexControl(UINT index)$/;" f class:CUiControlImpl
FindSelectable uibase/uilib/core/uicontainer.cpp /^ int CContainerUI::FindSelectable(int iIndex, bool bForward \/*= true*\/) const$/;" f class:DuiLib::CContainerUI
FindShadowWindow uibase/uilib/utils/wndshadow.cpp /^CWndShadow* CWndShadow::FindShadowWindow(HWND hWnd)$/;" f class:CWndShadow
+FindStartPositionOfCompletion vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FindStartPositionOfCompletion()$/;" f
FindSubControl uibase/uilib/core/uicontainer.cpp /^ CControlUI* CContainerUI::FindSubControl(LPCTSTR pstrSubControlName)$/;" f class:DuiLib::CContainerUI
FindSubControlByClass uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindSubControlByClass(CControlUI* pParent, LPCTSTR pstrClass, int iIndex)$/;" f class:DuiLib::CPaintManagerUI
FindSubControlByName uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindSubControlByName(CControlUI* pParent, LPCTSTR pstrName) const$/;" f class:DuiLib::CPaintManagerUI
@@ -2448,6 +2110,7 @@ First access/recordset.cpp /^std_method_type_impl(UINT) CRecordSet::First()$/;"
Fn uibase/uilib/utils/uidelegate.h /^ typedef bool (*Fn)(void*);$/;" t class:DuiLib::CDelegateStatic
Fn uibase/uilib/utils/uidelegate.h /^ typedef bool (T::* Fn)(void*);$/;" t class:DuiLib::CDelegate
FnType uibase/uilib/utils/uidelegate.h /^ typedef bool (*FnType)(void*);$/;" t class:DuiLib::CEventSource
+FoldTags vim_tool/.vim/plugin/wintagexplorer.vim /^function! FoldTags()$/;" f
Format uibase/uilib/utils/utils.cpp /^ int CDuiString::Format(LPCTSTR pstrFormat, ...)$/;" f class:DuiLib::CDuiString
Free access/statement.cpp /^std_method_impl CStatementImpl::Free()$/;" f class:CStatementImpl
Free container/objectloader.cpp /^std_method_impl CObjectLoader::Free()$/;" f class:CObjectLoader
@@ -2537,36 +2200,42 @@ FuncDestructor access/sqlite3.c /^struct FuncDestructor {$/;" s file:
FuncDestructor access/sqlite3.c /^typedef struct FuncDestructor FuncDestructor;$/;" t typeref:struct:FuncDestructor file:
FuncDestructor logs/sqlite3.c /^struct FuncDestructor {$/;" s file:
FuncDestructor logs/sqlite3.c /^typedef struct FuncDestructor FuncDestructor;$/;" t typeref:struct:FuncDestructor file:
-G base/algorithm/compat_md5.c 4;" d file:
G polipo/md5.c 74;" d file:
+G stdcrt/algorithm/compat_md5.c 4;" d file:
GETVARINT_INIT access/sqlite3.c 124348;" d file:
GETVARINT_INIT logs/sqlite3.c 124348;" d file:
GETVARINT_STEP access/sqlite3.c 124345;" d file:
GETVARINT_STEP logs/sqlite3.c 124345;" d file:
-GG base/algorithm/compat_md5.c 14;" d file:
GG polipo/md5.c 101;" d file:
+GG stdcrt/algorithm/compat_md5.c 14;" d file:
GLOBAL access/sqlite3.c 8578;" d file:
GLOBAL access/sqlite3.c 8584;" d file:
GLOBAL logs/sqlite3.c 8578;" d file:
GLOBAL logs/sqlite3.c 8584;" d file:
-GUID compat/compat_guid.hpp /^} GUID;$/;" t typeref:struct:_GUID
-GUIDClassName compat/compat_guid.h 15;" d
-GUIDFormatString compat/compat_guid.h 12;" d
-GUIDFormatWString compat/compat_guid.h 13;" d
-GUIDStringLength compat/compat_guid.h 14;" d
-GUIDToString base/stdlib/compat_guid.c /^const char* GUIDToString(const GUID* guid, char* lpGuidBuf)$/;" f
-GUIDToWString base/stdlib/compat_guid.c /^const wchar_t* GUIDToWString(const GUID* guid, wchar_t* lpGuidBuf)$/;" f
-GUID_DEFINED compat/compat_guid.hpp 5;" d
+GROUP0 vim_tool/.vim/autoload/acp.vim /^let s:GROUP0 = 0$/;" v
+GROUP1 vim_tool/.vim/autoload/acp.vim /^let s:GROUP1 = 1$/;" v
+GUID crt/crt_guid.hpp /^} GUID;$/;" t typeref:struct:_GUID
+GUIDClassName crt/crt_guid.h 15;" d
+GUIDFormatString crt/crt_guid.h 12;" d
+GUIDFormatWString crt/crt_guid.h 13;" d
+GUIDStringLength crt/crt_guid.h 14;" d
+GUIDToString stdcrt/stdlib/compat_guid.c /^const char* GUIDToString(const GUID* guid, char* lpGuidBuf)$/;" f
+GUIDToWString stdcrt/stdlib/compat_guid.c /^const wchar_t* GUIDToWString(const GUID* guid, wchar_t* lpGuidBuf)$/;" f
+GUID_DEFINED crt/crt_guid.hpp 5;" d
GdiplusStartupInput uibase/uilib/control/uilabel.h /^struct Gdiplus::GdiplusStartupInput;$/;" m class:Gdiplus typeref:struct:Gdiplus::
GenerateBitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::GenerateBitmap(CPaintManagerUI* pManager, CControlUI* pControl, RECT rc, DWORD dwFilterColor)$/;" f class:DuiLib::CRenderEngine
GenerateBitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::GenerateBitmap(CPaintManagerUI* pManager, RECT rc, CControlUI* pStopControl, DWORD dwFilterColor)$/;" f class:DuiLib::CRenderEngine
GenerateClip uibase/uilib/core/uirender.cpp /^void CRenderClip::GenerateClip(HDC hDC, RECT rc, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip
GenerateRoundClip uibase/uilib/core/uirender.cpp /^void CRenderClip::GenerateRoundClip(HDC hDC, RECT rc, RECT rcItem, int width, int height, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip
+GetAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:GetAccessFilter(szFilter, szAccessFilter)$/;" f
GetActiveState uibase/uilib/control/uirichedit.cpp /^ BOOL GetActiveState(void) { return fInplaceActive; }$/;" f class:DuiLib::CTxtWinHost
GetAdjustColor uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetAdjustColor(DWORD dwColor)$/;" f class:DuiLib::CControlUI
GetAllRecord logs/tablestruct.cpp /^std_method_impl CTableStruct::GetAllRecord(FieldSturct fields[], UINT Count)$/;" f class:CTableStruct
+GetAllUsingNamespaceMapFromCurrentBuffer vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetAllUsingNamespaceMapFromCurrentBuffer(...)$/;" f
+GetAllUsingNamespaceMapFromFile vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetAllUsingNamespaceMapFromFile(szFilePath, ...)$/;" f
GetAllowBeep uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::GetAllowBeep()$/;" f class:DuiLib::CTxtWinHost
-GetAt include/dlcom/loadcom.hpp /^ CLSID GetAt(INT nIndex)$/;" f class:CComLoader
+GetArgc container/mainrun.cpp /^std_method_type_impl(int) CMainRun::GetArgc()$/;" f class:CMainRun
+GetAt include/dlcom/loadcom.hpp /^ CLSID GetAt(LONG nIndex)$/;" f class:CComLoader
GetAt uibase/uilib/utils/utils.cpp /^ LPCTSTR CDuiStringPtrMap::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiStringPtrMap
GetAt uibase/uilib/utils/utils.cpp /^ LPVOID CDuiPtrArray::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiPtrArray
GetAt uibase/uilib/utils/utils.cpp /^ LPVOID CDuiValArray::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiValArray
@@ -2581,6 +2250,7 @@ GetAttributeValue uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::GetAttribut
GetAttributeValue uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::GetAttributeValue(int iIndex, LPTSTR pstrValue, SIZE_T cchMax)$/;" f class:DuiLib::CMarkupNode
GetAutoURLDetect uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::GetAutoURLDetect() const$/;" f class:DuiLib::CRichEditUI
GetAwareness uibase/uilib/dpi.hpp /^ PROCESS_DPI_AWARENESS GetAwareness()$/;" f class:CDPI
+GetBaseObject container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::GetBaseObject(REFCLSID clsid, REFIID iid, IBase **ppunk)$/;" f class:CComRunningObjectTableImpl
GetBkColor uibase/uicontrolimpl.cpp /^std_method_type_impl(DWORD) CUiControlImpl::GetBkColor()$/;" f class:CUiControlImpl
GetBkColor uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetBkColor() const$/;" f class:DuiLib::CControlUI
GetBkColor2 uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetBkColor2() const$/;" f class:DuiLib::CControlUI
@@ -2665,7 +2335,6 @@ GetClassObject include/dlcom/comfactory.hpp /^ static HRESULT GetClassObject(con
GetClassObjectMap access/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
GetClassObjectMap asynio/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
GetClassObjectMap container/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
-GetClassObjectMap http/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
GetClassObjectMap logs/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
GetClassObjectMap mainview/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
GetClassObjectMap mempool/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f
@@ -2678,7 +2347,6 @@ GetClassObjectMap uibase/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClas
GetClassObjectMapSize access/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize asynio/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize container/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
-GetClassObjectMapSize http/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize logs/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize mainview/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize mempool/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
@@ -2688,6 +2356,7 @@ GetClassObjectMapSize plugin/dllmain.cpp /^static_const long GetClassObjectMapS
GetClassObjectMapSize render/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize res/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
GetClassObjectMapSize uibase/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f
+GetClassScopeAtCursor vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetClassScopeAtCursor()$/;" f
GetClassStyle uibase/uilib/control/uicombo.cpp /^UINT CComboWnd::GetClassStyle() const$/;" f class:DuiLib::CComboWnd
GetClassStyle uibase/uilib/core/uibase.cpp /^UINT CWindowWnd::GetClassStyle() const$/;" f class:DuiLib::CWindowWnd
GetClassStyle uibase/uilib/utils/winimplbase.cpp /^UINT WindowImplBase::GetClassStyle() const$/;" f class:DuiLib::WindowImplBase
@@ -2699,6 +2368,7 @@ GetClientRect uibase/uilib/control/uirichedit.cpp /^ RECT* GetClientRect() {
GetClientSize uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetClientSize() const$/;" f class:DuiLib::CPaintManagerUI
GetClsidCount container/plugins.cpp /^DWORD CPlugins::GetClsidCount()$/;" f class:CPlugins
GetColumns uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetColumns() const$/;" f class:DuiLib::CTileLayoutUI
+GetCompentCount include/dlcom/objectrun.hpp /^ ULONG GetCompentCount() {$/;" f class:CContainer
GetCompentsCount container/plugins.cpp /^DWORD CPlugins::GetCompentsCount()$/;" f class:CPlugins
GetContainerExitCode include/dlcom/objectrun.hpp /^ UINT GetContainerExitCode() {$/;" f class:CContainer
GetControlAttribute uibase/uicontrolimpl.cpp /^std_method_type_impl(UIType) CUiControlImpl::GetControlAttribute()$/;" f class:CUiControlImpl
@@ -2766,17 +2436,16 @@ GetDrawIndex uibase/uilib/control/uilist.cpp /^int CListContainerElementUI::GetD
GetDrawIndex uibase/uilib/control/uilist.cpp /^int CListElementUI::GetDrawIndex() const$/;" f class:DuiLib::CListElementUI
GetDropBoxAttributeList uibase/uilib/control/uicombo.cpp /^CDuiString CComboUI::GetDropBoxAttributeList()$/;" f class:DuiLib::CComboUI
GetDropBoxSize uibase/uilib/control/uicombo.cpp /^SIZE CComboUI::GetDropBoxSize() const$/;" f class:DuiLib::CComboUI
-GetDynamicName base/io/compat_path.c /^int GetDynamicName(const basic_tchar* pName, basic_tchar* pPluginName, ULONG ulen)$/;" f
-GetDynamicPath base/io/compat_path.c /^int GetDynamicPath(void* szName, basic_tchar* szPath, ULONG ulen)$/;" f
+GetDynamicName stdcrt/io/compat_path.c /^int GetDynamicName(const basic_tchar* pName, basic_tchar* pPluginName, ULONG ulen)$/;" f
+GetDynamicPath stdcrt/io/compat_path.c /^int GetDynamicPath(void* szName, basic_tchar* szPath, ULONG ulen)$/;" f
GetEnabledEffect uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledEffect()$/;" f class:DuiLib::CLabelUI
GetEnabledLuminous uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledLuminous()$/;" f class:DuiLib::CLabelUI
GetEnabledShadow uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledShadow()$/;" f class:DuiLib::CLabelUI
GetEnabledStroke uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledStroke()$/;" f class:DuiLib::CLabelUI
GetEventMask uibase/uilib/control/uirichedit.cpp /^DWORD CRichEditUI::GetEventMask() const$/;" f class:DuiLib::CRichEditUI
GetExePathString include/utilex/file.hpp /^static_inline basic_tstring GetExePathString() {$/;" f
-GetExecutePath base/io/compat_path.c /^int GetExecutePath(_pinstance hInstance, basic_tchar* szPath, ULONG ulen)$/;" f
+GetExecutePath stdcrt/io/compat_path.c /^int GetExecutePath(_pinstance hInstance, basic_tchar* szPath, ULONG ulen)$/;" f
GetExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetExitCode()$/;" f class:CMainRun
-GetExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetExitCode(CLSID iid)$/;" f class:CMainRun
GetExpandedItem uibase/uilib/control/uicombo.cpp /^int CComboUI::GetExpandedItem() const$/;" f class:DuiLib::CComboUI
GetExpandedItem uibase/uilib/control/uilist.cpp /^int CListUI::GetExpandedItem() const$/;" f class:DuiLib::CListUI
GetExpect asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::GetExpect(ULONG *pExpectBytes)$/;" f class:CIoOperationImpl
@@ -2787,8 +2456,10 @@ GetField access/tableinfo.cpp /^std_method_impl CXTableInfo::GetField(UINT nInde
GetFieldCount access/tableinfo.cpp /^std_method_type_impl(UINT) CXTableInfo::GetFieldCount()$/;" f class:CXTableInfo
GetFieldIndex access/recordset.cpp /^unsigned int CRecordSet::GetFieldIndex(LPCSTR lpszName)$/;" f class:CRecordSet
GetFieldsCount logs/tablestruct.cpp /^std_method_impl CTableStruct::GetFieldsCount(UINT &count)$/;" f class:CTableStruct
+GetFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFileName()$/;" f
+GetFileNameEsc vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFileNameEsc()$/;" f
GetFileSize asynio/fileimpl.cpp /^std_method_type_impl(int64) CFileImpl::GetFileSize()$/;" f class:CFileImpl
-GetFiles base/io/compat_path.c /^int GetFiles(basic_tchar* szPath, get_file_cb entry, void* ctx)$/;" f
+GetFiles stdcrt/io/compat_path.c /^int GetFiles(basic_tchar* szPath, get_file_cb entry, void* ctx)$/;" f
GetFixed uibase/uicontrolimpl.cpp /^std_method_type_impl(SIZE) CUiControlImpl::GetFixed()$/;" f class:CUiControlImpl
GetFixedColumns uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetFixedColumns() const$/;" f class:DuiLib::CTileLayoutUI
GetFixedHeight uibase/uilib/core/uicontrol.cpp /^ int CControlUI::GetFixedHeight() const$/;" f class:DuiLib::CControlUI
@@ -2821,6 +2492,8 @@ GetForeImage uibase/uilib/control/uibutton.cpp /^ LPCTSTR CButtonUI::GetForeImag
GetForeImage uibase/uilib/control/uioption.cpp /^ LPCTSTR COptionUI::GetForeImage()$/;" f class:DuiLib::COptionUI
GetForeImage uibase/uilib/control/uiprogress.cpp /^ LPCTSTR CProgressUI::GetForeImage() const$/;" f class:DuiLib::CProgressUI
GetFoundControls uibase/uilib/core/uimanager.cpp /^CDuiPtrArray* CPaintManagerUI::GetFoundControls()$/;" f class:DuiLib::CPaintManagerUI
+GetFullFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFullFileName()$/;" f
+GetFullFileNameEsc vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFullFileNameEsc()$/;" f
GetFunDefs extensions/include/platform/services/license.hpp /^ virtual STFunDesc *GetFunDefs()$/;" f class:CLicenseLoader
GetFunDefs include/dlcom/loadcom.hpp /^ virtual STFunDesc *GetFunDefs() $/;" f class:CComLoader
GetGradientAngle uibase/uilib/control/uilabel.cpp /^ int CLabelUI::GetGradientAngle()$/;" f class:DuiLib::CLabelUI
@@ -2848,17 +2521,21 @@ GetHotItemTextColor uibase/uilib/control/uicombo.cpp /^DWORD CComboUI::GetHotIte
GetHotItemTextColor uibase/uilib/control/uilist.cpp /^DWORD CListUI::GetHotItemTextColor() const$/;" f class:DuiLib::CListUI
GetHotTextColor uibase/uilib/control/uibutton.cpp /^ DWORD CButtonUI::GetHotTextColor() const$/;" f class:DuiLib::CButtonUI
GetHoverTime uibase/uilib/core/uimanager.cpp /^int CPaintManagerUI::GetHoverTime() const$/;" f class:DuiLib::CPaintManagerUI
-GetHttpHead http/httptimpl.cpp /^std_method_type_impl(http_header) CHttptImpl::GetHttpHead()$/;" f class:CHttptImpl
+GetHttpHead net/httptimpl.cpp /^std_method_type_impl(http_header) CHttptImpl::GetHttpHead()$/;" f class:CHttptImpl
+GetIExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetIExitCode(CLSID iid)$/;" f class:CMainRun
GetId asynio/iooperationimpl.cpp /^std_method_type_impl(ULONG) CIoOperationImpl::GetId()$/;" f class:CIoOperationImpl
GetId asynio/timerimpl.cpp /^std_method_type_impl(UINT) CTimerImpl::GetId()$/;" f class:CTimerImpl
GetId container/msg.cpp /^std_method_type_impl(unsigned int) CMsgImpl::GetId()$/;" f class:CMsgImpl
GetImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::GetImage(LPCTSTR bitmap)$/;" f class:DuiLib::CPaintManagerUI
GetImageEx uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::GetImageEx(LPCTSTR bitmap, LPCTSTR type, DWORD mask, bool bUseHSL)$/;" f class:DuiLib::CPaintManagerUI
+GetIncludeListFromCurrentBuffer vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:GetIncludeListFromCurrentBuffer()$/;" f
+GetIncludeListFromFile vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:GetIncludeListFromFile(szFilePath, bUpdate) $/;" f
GetIndex uibase/uilib/control/uilist.cpp /^int CListContainerElementUI::GetIndex() const$/;" f class:DuiLib::CListContainerElementUI
GetIndex uibase/uilib/control/uilist.cpp /^int CListElementUI::GetIndex() const$/;" f class:DuiLib::CListElementUI
+GetIndexArgv container/mainrun.cpp /^std_method_type_impl(basic_tchar*) CMainRun::GetIndexArgv(int index)$/;" f class:CMainRun
GetInitSize uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetInitSize()$/;" f class:DuiLib::CPaintManagerUI
GetInset uibase/uilib/core/uicontainer.cpp /^ RECT CContainerUI::GetInset() const$/;" f class:DuiLib::CContainerUI
-GetInstance base/stdlib/compat_proctol.c /^_pinstance GetInstance()$/;" f
+GetInstance stdcrt/stdlib/compat_proctol.c /^_pinstance GetInstance(void)$/;" f
GetInstance uibase/uilib/core/uimanager.cpp /^HINSTANCE CPaintManagerUI::GetInstance()$/;" f class:DuiLib::CPaintManagerUI
GetInstancePath uibase/uilib/core/uimanager.cpp /^CDuiString CPaintManagerUI::GetInstancePath()$/;" f class:DuiLib::CPaintManagerUI
GetInt access/recordset.cpp /^std_method_impl CRecordSet::GetInt(LPCSTR lpszName, INT& nValue)$/;" f class:CRecordSet
@@ -2971,6 +2648,9 @@ GetName uibase/uicontrolimpl.cpp /^std_method_type_impl(LPCSTR) CUiControlImpl::
GetName uibase/uilib/core/uicontrol.cpp /^ CDuiString CControlUI::GetName() const$/;" f class:DuiLib::CControlUI
GetName uibase/uilib/core/uimanager.cpp /^LPCTSTR CPaintManagerUI::GetName() const$/;" f class:DuiLib::CPaintManagerUI
GetName uibase/uilib/core/uimarkup.cpp /^LPCTSTR CMarkupNode::GetName() const$/;" f class:DuiLib::CMarkupNode
+GetNamespaceAliasListFromLine vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceAliasListFromLine(szLine)$/;" f
+GetNamespaceAliasMap vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceAliasMap()$/;" f
+GetNamespaceListFromLine vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceListFromLine(szLine)$/;" f
GetNative uibase/uicontrolimpl.cpp /^std_method_type_impl(HWND) CUiControlImpl::GetNative()$/;" f class:CUiControlImpl
GetNativeEditBkColor uibase/uilib/control/uiedit.cpp /^ DWORD CEditUI::GetNativeEditBkColor() const$/;" f class:DuiLib::CEditUI
GetNativeEditHWND uibase/uilib/control/uiedit.cpp /^ HWND CEditUI::GetNativeEditHWND() const$/;" f class:DuiLib::CEditUI
@@ -2989,7 +2669,7 @@ GetObject container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::GetObj
GetObject include/comutiliy/cchannel.hpp /^ std_method_impl GetObject(IBase *pIBase, OperationPtr& pOperation)$/;" f class:CChannel
GetObject include/comutiliy/schannel.hpp /^ std_method_impl GetObject(IBase *pIBase, TcpSocketPtr& pSocket, OperationPtr& pOperation)$/;" f class:SChannel
GetObject uibase/uilib/utils/uidelegate.cpp /^void* CDelegateBase::GetObject() $/;" f class:DuiLib::CDelegateBase
-GetObjectCount container/rot.cpp /^std_method_type_impl(UINT) CComRunningObjectTableImpl::GetObjectCount()$/;" f class:CComRunningObjectTableImpl
+GetObjectCount container/rot.cpp /^std_method_type_impl(ULONG) CComRunningObjectTableImpl::GetObjectCount()$/;" f class:CComRunningObjectTableImpl
GetObjectLoader container/mainrun.cpp /^std_method_impl CMainRun::GetObjectLoader(IBase** Base)$/;" f class:CMainRun
GetOp logs/tablestruct.cpp /^std_method_type_impl(UINT) CTableStruct::GetOp()$/;" f class:CTableStruct
GetOpacity uibase/uilib/core/uimanager.cpp /^BYTE CPaintManagerUI::GetOpacity() const$/;" f class:DuiLib::CPaintManagerUI
@@ -3041,8 +2721,9 @@ GetRoundCorner uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetRoundC
GetRoute mainview/mainviewimpl.cpp /^std_method_type_impl(ULONG) CMainViewImpl::GetRoute()$/;" f class:CMainViewImpl
GetRows uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetRows() const$/;" f class:DuiLib::CTileLayoutUI
GetRuleFiles logs/logsimpl.cpp /^std_method_impl CLogsImpl::GetRuleFiles()$/;" f class:CLogsImpl
+GetRunIndex container/mainrun.cpp /^std_method_type_impl(ULONG) CMainRun::GetRunIndex(ULONG index)$/;" f class:CMainRun
GetRunPluginCLSID container/mainrun.cpp /^std_method_type_impl(CLSID) CMainRun::GetRunPluginCLSID()$/;" f class:CMainRun
-GetRunPluginsCount container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetRunPluginsCount()$/;" f class:CMainRun
+GetRunPluginsCount container/mainrun.cpp /^std_method_type_impl(ULONG) CMainRun::GetRunPluginsCount()$/;" f class:CMainRun
GetScale uibase/uilib/dpi.hpp /^ UINT GetScale()$/;" f class:CDPI
GetScrollPos uibase/uilib/control/uilist.cpp /^SIZE CListUI::GetScrollPos() const$/;" f class:DuiLib::CListUI
GetScrollPos uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrollPos() const$/;" f class:DuiLib::CScrollBarUI
@@ -3052,6 +2733,7 @@ GetScrollRange uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrol
GetScrollRange uibase/uilib/core/uicontainer.cpp /^ SIZE CContainerUI::GetScrollRange() const$/;" f class:DuiLib::CContainerUI
GetScrollSelect uibase/uilib/control/uilist.cpp /^bool CListUI::GetScrollSelect()$/;" f class:DuiLib::CListUI
GetScrollUnit uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrollUnit() const$/;" f class:DuiLib::CScrollBarUI
+GetSection vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetSection()$/;" f
GetSel uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::GetSel(CHARRANGE &cr) const$/;" f class:DuiLib::CRichEditUI
GetSel uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::GetSel(long& nStartChar, long& nEndChar) const$/;" f class:DuiLib::CRichEditUI
GetSelItemHotTextColor uibase/uilib/control/uitreeview.cpp /^ DWORD CTreeNodeUI::GetSelItemHotTextColor() const$/;" f class:DuiLib::CTreeNodeUI
@@ -3088,9 +2770,11 @@ GetSize uibase/uilib/utils/utils.cpp /^ int CDuiPtrArray::GetSize() const$/;" f
GetSize uibase/uilib/utils/utils.cpp /^ int CDuiStringPtrMap::GetSize() const$/;" f class:DuiLib::CDuiStringPtrMap
GetSize uibase/uilib/utils/utils.cpp /^ int CDuiValArray::GetSize() const$/;" f class:DuiLib::CDuiValArray
GetSizeBox uibase/uilib/core/uimanager.cpp /^RECT& CPaintManagerUI::GetSizeBox()$/;" f class:DuiLib::CPaintManagerUI
+GetStartIndex include/dlcom/objectrun.hpp /^ ULONG GetStartIndex(ULONG index) {$/;" f class:CContainer
GetState include/utilex/semthread.hpp /^ UINT GetState() {$/;" f class:CSemThread
GetState include/utilex/thread.hpp /^ UINT GetState() {$/;" f class:CThread
GetState include/utilex/timethread.hpp /^ UINT GetState() {$/;" f class:CTimeThread
+GetStopPositionForLocalSearch vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetStopPositionForLocalSearch()$/;" f
GetString access/recordset.cpp /^std_method_type_impl(LPCSTR) CRecordSet::GetString(LPCSTR lpszName)$/;" f class:CRecordSet
GetString access/recordset.cpp /^std_method_type_impl(LPCSTR) CRecordSet::GetString(unsigned int nIndex)$/;" f class:CRecordSet
GetStrokeColor uibase/uilib/control/uilabel.cpp /^ DWORD CLabelUI::GetStrokeColor()$/;" f class:DuiLib::CLabelUI
@@ -3103,11 +2787,13 @@ GetSubControlUserData uibase/uilib/core/uicontainer.cpp /^ const CDuiString CCon
GetSuperClassName uibase/uilib/control/uidatetime.cpp /^ LPCTSTR CDateTimeWnd::GetSuperClassName() const$/;" f class:DuiLib::CDateTimeWnd
GetSuperClassName uibase/uilib/control/uiedit.cpp /^ LPCTSTR CEditWnd::GetSuperClassName() const$/;" f class:DuiLib::CEditWnd
GetSuperClassName uibase/uilib/core/uibase.cpp /^LPCTSTR CWindowWnd::GetSuperClassName() const$/;" f class:DuiLib::CWindowWnd
+GetSymbol vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetSymbol(tokens)$/;" f
GetTableFields logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::GetTableFields(Table& table,$/;" f class:CLogDataBaseImpl
GetTableInfo access/dbimpl.cpp /^std_method_impl CDatabaseImpl::GetTableInfo(LPCSTR lpszName, ITableInfo** ppTableInfo)$/;" f class:CDatabaseImpl
GetTableName logs/tablestruct.cpp /^std_method_impl CTableStruct::GetTableName(LPSTR name)$/;" f class:CTableStruct
GetTableStruct logs/database.cpp /^std_method_impl CDatabase::GetTableStruct(LPCSTR strTableName, vector& VecField)$/;" f class:CDatabase
GetTag uibase/uilib/core/uicontrol.cpp /^ UINT_PTR CControlUI::GetTag() const$/;" f class:DuiLib::CControlUI
+GetTagOfSameScope vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:GetTagOfSameScope(listTags, szScopeToMatch)$/;" f
GetText uibase/uicontrolimpl.cpp /^std_method_type_impl(LPCSTR) CUiControlImpl::GetText()$/;" f class:CUiControlImpl
GetText uibase/uilib/control/uicombo.cpp /^CDuiString CComboUI::GetText() const$/;" f class:DuiLib::CComboUI
GetText uibase/uilib/control/uilist.cpp /^LPCTSTR CListTextElementUI::GetText(int iIndex) const$/;" f class:DuiLib::CListTextElementUI
@@ -3142,7 +2828,8 @@ GetThumbRect uibase/uilib/control/uilist.cpp /^RECT CListHeaderItemUI::GetThumbR
GetThumbRect uibase/uilib/control/uislider.cpp /^ RECT CSliderUI::GetThumbRect() const$/;" f class:DuiLib::CSliderUI
GetThumbRect uibase/uilib/layout/uihorizontallayout.cpp /^ RECT CHorizontalLayoutUI::GetThumbRect(bool bUseNew) const$/;" f class:DuiLib::CHorizontalLayoutUI
GetThumbRect uibase/uilib/layout/uiverticallayout.cpp /^ RECT CVerticalLayoutUI::GetThumbRect(bool bUseNew) const$/;" f class:DuiLib::CVerticalLayoutUI
-GetTickCount base/stdlib/compat_stdtime.c /^unsigned long GetTickCount()$/;" f
+GetTickCount stdcrt/stdlib/compat_stdtime.c /^unsigned long GetTickCount()$/;" f
+GetTickCount stdcrt/stdlib/compat_stdtime.c /^unsigned long GetTickCount(void)$/;" f
GetTime uibase/uilib/control/uidatetime.cpp /^ SYSTEMTIME& CDateTimeUI::GetTime()$/;" f class:DuiLib::CDateTimeUI
GetTimerState uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::GetTimerState()$/;" f class:DuiLib::CTxtWinHost
GetToolTip uibase/uicontrolimpl.cpp /^std_method_type_impl(LPSTRING) CUiControlImpl::GetToolTip()$/;" f class:CUiControlImpl
@@ -3158,6 +2845,8 @@ GetTreeNodes uibase/uilib/control/uitreeview.cpp /^ CDuiPtrArray CTreeNodeUI::Ge
GetTreeView uibase/uilib/control/uitreeview.cpp /^ CTreeViewUI* CTreeNodeUI::GetTreeView()$/;" f class:DuiLib::CTreeNodeUI
GetTxDropTarget uibase/uilib/control/uirichedit.cpp /^IDropTarget* CRichEditUI::GetTxDropTarget()$/;" f class:DuiLib::CRichEditUI
GetType access/fieldinfo.cpp /^std_method_type_impl(int) CXFieldInfo::GetType()$/;" f class:CXFieldInfo
+GetTypeInfoOfReturnedType vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetTypeInfoOfReturnedType(contextStack, szFunctionName)$/;" f
+GetTypeInfoOfVariable vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetTypeInfoOfVariable(contextStack, szVariable, bSearchDecl)$/;" f
GetTypeName access/fieldinfo.cpp /^std_method_type_impl(LPCSTR) CXFieldInfo::GetTypeName()$/;" f class:CXFieldInfo
GetUByte include/comutiliy/serialize.hpp /^ std_method_impl GetUByte(unsigned char& nVal, unsigned int offset)$/;" f class:Serialize
GetUInt access/recordset.cpp /^std_method_impl CRecordSet::GetUInt(LPCSTR lpszName, UINT& nValue)$/;" f class:CRecordSet
@@ -3168,6 +2857,7 @@ GetUInt64 access/recordset.cpp /^std_method_impl CRecordSet::GetUInt64(LPCSTR lp
GetUInt64 access/recordset.cpp /^std_method_impl CRecordSet::GetUInt64(unsigned int nIndex, uint64& nValue)$/;" f class:CRecordSet
GetUShort include/comutiliy/serialize.hpp /^ std_method_impl GetUShort(unsigned short& nVal, unsigned int offset)$/;" f class:Serialize
GetUserData uibase/uilib/core/uicontrol.cpp /^ const CDuiString& CControlUI::GetUserData()$/;" f class:DuiLib::CControlUI
+GetUsingNamespaceListFromMap vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetUsingNamespaceListFromMap(namespaceMap, ...)$/;" f
GetValue uibase/uilib/control/uiprogress.cpp /^ int CProgressUI::GetValue() const$/;" f class:DuiLib::CProgressUI
GetValue uibase/uilib/core/uimarkup.cpp /^LPCTSTR CMarkupNode::GetValue() const$/;" f class:DuiLib::CMarkupNode
GetVersion container/msg.cpp /^std_method_type_impl(unsigned int) CMsgImpl::GetVersion()$/;" f class:CMsgImpl
@@ -3205,10 +2895,15 @@ GlobUpperToLower access/sqlite3.c 90243;" d file:
GlobUpperToLower access/sqlite3.c 90245;" d file:
GlobUpperToLower logs/sqlite3.c 90243;" d file:
GlobUpperToLower logs/sqlite3.c 90245;" d file:
-H base/algorithm/compat_md5.c 5;" d file:
+GoGdb vim_tool/.vim/plugin/devfunckey.vim /^func! GoGdb()$/;" f
+GotoExplorerWindow vim_tool/.vim/plugin/winmanager.vim /^function! GotoExplorerWindow(which)$/;" f
+GotoNextExplorerInGroup vim_tool/.vim/plugin/winmanager.vim /^function! GotoNextExplorerInGroup(name, ...)$/;" f
+GotoWindow vim_tool/.vim/plugin/winmanager.vim /^function! GotoWindow(reqdWinNum)$/;" f
+GroupTags vim_tool/.vim/plugin/wintagexplorer.vim /^function! GroupTags() range$/;" f
H polipo/md5.c 75;" d file:
-HANDLE compat/darwinossysdef.h /^typedef void* HANDLE;$/;" t
-HANDLE compat/posixossysdef.h /^typedef void* HANDLE;$/;" t
+H stdcrt/algorithm/compat_md5.c 5;" d file:
+HANDLE crt/darwinossysdef.h /^typedef void* HANDLE;$/;" t
+HANDLE crt/posixossysdef.h /^typedef void* HANDLE;$/;" t
HANDLE_TO_WINFILE access/sqlite3.c 33155;" d file:
HANDLE_TO_WINFILE logs/sqlite3.c 33155;" d file:
HASHSIZE access/sqlite3.c 141683;" d file:
@@ -3270,45 +2965,43 @@ HAVE_TM_GMTOFF polipo/polipo.h 113;" d
HAVE_TM_GMTOFF polipo/polipo.h 92;" d
HAVE_TZSET polipo/polipo.h 127;" d
HAVE_WINSOCK polipo/mingw.h 38;" d
-HDC compat/darwinossysdef.h /^typedef void* HDC;$/;" t
-HDC compat/posixossysdef.h /^typedef void* HDC;$/;" t
-HDESK compat/darwinossysdef.h /^typedef void* HDESK;$/;" t
-HDESK compat/posixossysdef.h /^typedef void* HDESK;$/;" t
-HDWP compat/darwinossysdef.h /^typedef HANDLE HDWP;$/;" t
-HDWP compat/posixossysdef.h /^typedef HANDLE HDWP;$/;" t
+HDC crt/darwinossysdef.h /^typedef void* HDC;$/;" t
+HDC crt/posixossysdef.h /^typedef void* HDC;$/;" t
+HDESK crt/darwinossysdef.h /^typedef void* HDESK;$/;" t
+HDESK crt/posixossysdef.h /^typedef void* HDESK;$/;" t
+HDWP crt/darwinossysdef.h /^typedef HANDLE HDWP;$/;" t
+HDWP crt/posixossysdef.h /^typedef HANDLE HDWP;$/;" t
HEADER_PUGICONFIG_HPP uibase/uilib/core/pugiconfig.hpp 15;" d
HEADER_PUGIXML_HPP uibase/uilib/core/pugixml.hpp 24;" d
-HEMF compat/darwinossysdef.h /^typedef void* HEMF;$/;" t
-HEMF compat/posixossysdef.h /^typedef void* HEMF;$/;" t
-HEX CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 555;" d file:
-HEX CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 540;" d file:
-HFILE compat/darwinossysdef.h /^typedef INT HFILE;$/;" t
-HFILE compat/posixossysdef.h /^typedef INT HFILE;$/;" t
-HGDIOBJ compat/darwinossysdef.h /^typedef void* HGDIOBJ;$/;" t
-HGDIOBJ compat/posixossysdef.h /^typedef void* HGDIOBJ;$/;" t
-HH base/algorithm/compat_md5.c 20;" d file:
+HEMF crt/darwinossysdef.h /^typedef void* HEMF;$/;" t
+HEMF crt/posixossysdef.h /^typedef void* HEMF;$/;" t
+HFILE crt/darwinossysdef.h /^typedef INT HFILE;$/;" t
+HFILE crt/posixossysdef.h /^typedef INT HFILE;$/;" t
+HGDIOBJ crt/darwinossysdef.h /^typedef void* HGDIOBJ;$/;" t
+HGDIOBJ crt/posixossysdef.h /^typedef void* HGDIOBJ;$/;" t
HH polipo/md5.c 106;" d file:
+HH stdcrt/algorithm/compat_md5.c 20;" d file:
HIMETRIC_PER_INCH uibase/uilib/control/uirichedit.cpp 32;" d file:
-HINSTANCE compat/darwinossysdef.h /^typedef pid_t HINSTANCE;$/;" t
-HINSTANCE compat/posixossysdef.h /^typedef pid_t HINSTANCE;$/;" t
-HKEY compat/darwinossysdef.h /^typedef void* HKEY;$/;" t
-HKEY compat/posixossysdef.h /^typedef void* HKEY;$/;" t
-HKL compat/darwinossysdef.h /^typedef void* HKL;$/;" t
-HKL compat/posixossysdef.h /^typedef void* HKL;$/;" t
-HMF compat/darwinossysdef.h /^typedef void* HMF;$/;" t
-HMF compat/posixossysdef.h /^typedef void* HMF;$/;" t
-HMODULE compat/darwinossysdef.h /^typedef void* HMODULE;$/;" t
-HMODULE compat/posixossysdef.h /^typedef void* HMODULE;$/;" t
-HPEN compat/darwinossysdef.h /^typedef void* HPEN;$/;" t
-HPEN compat/posixossysdef.h /^typedef void* HPEN;$/;" t
-HRESULT compat/compat_comutil.hpp /^ typedef long HRESULT;$/;" t
-HRSRC compat/darwinossysdef.h /^typedef void* HRSRC;$/;" t
-HRSRC compat/posixossysdef.h /^typedef void* HRSRC;$/;" t
+HINSTANCE crt/darwinossysdef.h /^typedef pid_t HINSTANCE;$/;" t
+HINSTANCE crt/posixossysdef.h /^typedef pid_t HINSTANCE;$/;" t
+HKEY crt/darwinossysdef.h /^typedef void* HKEY;$/;" t
+HKEY crt/posixossysdef.h /^typedef void* HKEY;$/;" t
+HKL crt/darwinossysdef.h /^typedef void* HKL;$/;" t
+HKL crt/posixossysdef.h /^typedef void* HKL;$/;" t
+HMF crt/darwinossysdef.h /^typedef void* HMF;$/;" t
+HMF crt/posixossysdef.h /^typedef void* HMF;$/;" t
+HMODULE crt/darwinossysdef.h /^typedef void* HMODULE;$/;" t
+HMODULE crt/posixossysdef.h /^typedef void* HMODULE;$/;" t
+HPEN crt/darwinossysdef.h /^typedef void* HPEN;$/;" t
+HPEN crt/posixossysdef.h /^typedef void* HPEN;$/;" t
+HRESULT crt/crt_comutil.hpp /^ typedef long HRESULT;$/;" t
+HRSRC crt/darwinossysdef.h /^typedef void* HRSRC;$/;" t
+HRSRC crt/posixossysdef.h /^typedef void* HRSRC;$/;" t
HSLtoRGB uibase/uilib/core/uirender.cpp /^static void HSLtoRGB(DWORD* ARGB, float H, float S, float L) {$/;" f namespace:DuiLib file:
-HSTR compat/darwinossysdef.h /^typedef void* HSTR;$/;" t
-HSTR compat/posixossysdef.h /^typedef void* HSTR;$/;" t
-HTASK compat/darwinossysdef.h /^typedef void* HTASK;$/;" t
-HTASK compat/posixossysdef.h /^typedef void* HTASK;$/;" t
+HSTR crt/darwinossysdef.h /^typedef void* HSTR;$/;" t
+HSTR crt/posixossysdef.h /^typedef void* HSTR;$/;" t
+HTASK crt/darwinossysdef.h /^typedef void* HTASK;$/;" t
+HTASK crt/posixossysdef.h /^typedef void* HTASK;$/;" t
HTTPConditionPtr polipo/http.h /^} HTTPConditionRec, *HTTPConditionPtr;$/;" t typeref:struct:_HTTPCondition
HTTPConditionRec polipo/http.h /^} HTTPConditionRec, *HTTPConditionPtr;$/;" t typeref:struct:_HTTPCondition
HTTPConnectionPtr polipo/http.h /^} HTTPConnectionRec, *HTTPConnectionPtr;$/;" t typeref:struct:_HTTPConnection
@@ -3322,93 +3015,93 @@ HTTPServerPtr polipo/server.h /^} HTTPServerRec, *HTTPServerPtr;$/;" t typeref:s
HTTPServerRec polipo/server.h /^} HTTPServerRec, *HTTPServerPtr;$/;" t typeref:struct:_HTTPServer
HTTP_10 polipo/http.h 113;" d
HTTP_11 polipo/http.h 114;" d
-HTTP_ACCEPT http/http/http_header.hpp 6;" d
-HTTP_ACCEPT_CHARSET http/http/http_header.hpp 7;" d
-HTTP_ACCEPT_DATETIME http/http/http_header.hpp 9;" d
-HTTP_ACCEPT_ENCODEING http/http/http_header.hpp 8;" d
-HTTP_ACCEPT_LANGUAGE http/http/http_header.hpp 10;" d
-HTTP_AUTHORIZATION http/http/http_header.hpp 11;" d
-HTTP_BOTH http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
-HTTP_CACHE_CONTROL http/http/http_header.hpp 12;" d
-HTTP_CONNECTION http/http/http_header.hpp 13;" d
-HTTP_CONTEND_MD5 http/http/http_header.hpp 14;" d
-HTTP_CONTENT_TYPE http/http/http_header.hpp 23;" d
-HTTP_COOKIE http/http/http_header.hpp 25;" d
-HTTP_DATA http/http/http_header.hpp 15;" d
-HTTP_DNT http/http/http_header.hpp 24;" d
-HTTP_END http/http/http_header.hpp 29;" d
-HTTP_ERRNO_GEN http/http/http_parser.h 282;" d
-HTTP_ERRNO_GEN http/http/http_parser.h 286;" d
-HTTP_ERRNO_MAP http/http/http_parser.h /^ HTTP_ERRNO_MAP(HTTP_ERRNO_GEN)$/;" e enum:http_errno
-HTTP_ERRNO_MAP http/http/http_parser.h 235;" d
-HTTP_ETAG http/http/http_header.hpp 26;" d
-HTTP_EXPECT http/http/http_header.hpp 16;" d
-HTTP_FORWARDED http/http/http_header.hpp 17;" d
-HTTP_HOST http/http/http_header.hpp 27;" d
-HTTP_IMPL_CONNECTED extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECTED,$/;" e enum:__anon39
-HTTP_IMPL_CONNECTING extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECTING,$/;" e enum:__anon39
-HTTP_IMPL_CONNECT_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECT_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_END extensions/include/http/ihttp.h /^ HTTP_IMPL_END,$/;" e enum:__anon39
-HTTP_IMPL_LOCATION extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATION,$/;" e enum:__anon39
-HTTP_IMPL_LOCATIONED extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATIONED,$/;" e enum:__anon39
-HTTP_IMPL_LOCATION_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATION_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_RECV_BODY extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODY,$/;" e enum:__anon39
-HTTP_IMPL_RECV_BODYED extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODYED,$/;" e enum:__anon39
-HTTP_IMPL_RECV_BODY_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODY_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_RECV_HEAD extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEAD,$/;" e enum:__anon39
-HTTP_IMPL_RECV_HEADED extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEADED,$/;" e enum:__anon39
-HTTP_IMPL_RECV_HEAD_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEAD_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_SEND_BODY extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODY,$/;" e enum:__anon39
-HTTP_IMPL_SEND_BODYED extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODYED,$/;" e enum:__anon39
-HTTP_IMPL_SEND_BODY_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODY_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_SEND_HEAD extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEAD,$/;" e enum:__anon39
-HTTP_IMPL_SEND_HEADED extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEADED,$/;" e enum:__anon39
-HTTP_IMPL_SEND_HEAD_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEAD_FAIL,$/;" e enum:__anon39
-HTTP_IMPL_START extensions/include/http/ihttp.h /^ HTTP_IMPL_START = 0,$/;" e enum:__anon39
-HTTP_IMPL_UNKNOWN extensions/include/http/ihttp.h /^ HTTP_IMPL_UNKNOWN$/;" e enum:__anon39
-HTTP_KEEPALIVE http/http/http_header.hpp 19;" d
-HTTP_MAX_HEADER_SIZE http/http/http_parser.h 63;" d
-HTTP_METHOD_CONNECT extensions/include/http/ihttp.h /^ HTTP_METHOD_CONNECT, $/;" e enum:__anon41
-HTTP_METHOD_DELETE extensions/include/http/ihttp.h /^ HTTP_METHOD_DELETE, $/;" e enum:__anon41
-HTTP_METHOD_GET extensions/include/http/ihttp.h /^ HTTP_METHOD_GET, $/;" e enum:__anon41
-HTTP_METHOD_HEAD extensions/include/http/ihttp.h /^ HTTP_METHOD_HEAD, $/;" e enum:__anon41
-HTTP_METHOD_MAP http/http/http_parser.h /^ HTTP_METHOD_MAP(XX)$/;" e enum:http_method
-HTTP_METHOD_MAP http/http/http_parser.h 163;" d
-HTTP_METHOD_OPTION extensions/include/http/ihttp.h /^ HTTP_METHOD_OPTION, $/;" e enum:__anon41
-HTTP_METHOD_OTHER extensions/include/http/ihttp.h /^ HTTP_METHOD_OTHER, $/;" e enum:__anon41
-HTTP_METHOD_POST extensions/include/http/ihttp.h /^ HTTP_METHOD_POST, $/;" e enum:__anon41
-HTTP_METHOD_PROPFIND extensions/include/http/ihttp.h /^ HTTP_METHOD_PROPFIND, $/;" e enum:__anon41
-HTTP_METHOD_PURGE extensions/include/http/ihttp.h /^ HTTP_METHOD_PURGE, $/;" e enum:__anon41
-HTTP_METHOD_PUT extensions/include/http/ihttp.h /^ HTTP_METHOD_PUT, $/;" e enum:__anon41
-HTTP_METHOD_UNKNOWN extensions/include/http/ihttp.h /^ HTTP_METHOD_UNKNOWN, $/;" e enum:__anon41
-HTTP_MIME_FILE extensions/include/http/ihttp.h /^ HTTP_MIME_FILE \/\/ http mime file $/;" e enum:__anon43
-HTTP_MIME_PARAM extensions/include/http/ihttp.h /^ HTTP_MIME_PARAM, \/\/ http mime param$/;" e enum:__anon43
-HTTP_PARSER_ERRNO http/http/http_parser.h 290;" d
-HTTP_PARSER_STRICT http/http/http_parser.h 52;" d
-HTTP_PARSER_VERSION_MAJOR http/http/http_parser.h 28;" d
-HTTP_PARSER_VERSION_MINOR http/http/http_parser.h 29;" d
-HTTP_PARSER_VERSION_PATCH http/http/http_parser.h 30;" d
-HTTP_RANGE http/http/http_header.hpp 21;" d
-HTTP_REFERER http/http/http_header.hpp 20;" d
-HTTP_REQUEST http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
-HTTP_REQUEST_MULTIPART_FORM extensions/include/http/ihttp.h /^ HTTP_REQUEST_MULTIPART_FORM,$/;" e enum:__anon42
-HTTP_REQUEST_NORMAL extensions/include/http/ihttp.h /^ HTTP_REQUEST_NORMAL,$/;" e enum:__anon42
-HTTP_REQUEST_OCTET_STREAM extensions/include/http/ihttp.h /^ HTTP_REQUEST_OCTET_STREAM,$/;" e enum:__anon42
-HTTP_REQUEST_OTHER extensions/include/http/ihttp.h /^ HTTP_REQUEST_OTHER$/;" e enum:__anon42
-HTTP_REQUEST_TEXT_JSON extensions/include/http/ihttp.h /^ HTTP_REQUEST_TEXT_JSON,$/;" e enum:__anon42
-HTTP_REQUEST_TEXT_XML extensions/include/http/ihttp.h /^ HTTP_REQUEST_TEXT_XML,$/;" e enum:__anon42
-HTTP_RESPONSE http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
-HTTP_STATUS_MAP http/http/http_parser.h /^ HTTP_STATUS_MAP(XX)$/;" e enum:http_status
-HTTP_STATUS_MAP http/http/http_parser.h 93;" d
-HTTP_STRERROR_GEN http/http/http_parser.cpp 462;" d file:
-HTTP_STRERROR_GEN http/http/http_parser.cpp 469;" d file:
+HTTP_ACCEPT net/http_protocol/http_header.hpp 6;" d
+HTTP_ACCEPT_CHARSET net/http_protocol/http_header.hpp 7;" d
+HTTP_ACCEPT_DATETIME net/http_protocol/http_header.hpp 9;" d
+HTTP_ACCEPT_ENCODEING net/http_protocol/http_header.hpp 8;" d
+HTTP_ACCEPT_LANGUAGE net/http_protocol/http_header.hpp 10;" d
+HTTP_AUTHORIZATION net/http_protocol/http_header.hpp 11;" d
+HTTP_BOTH net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
+HTTP_CACHE_CONTROL net/http_protocol/http_header.hpp 12;" d
+HTTP_CONNECTION net/http_protocol/http_header.hpp 13;" d
+HTTP_CONTEND_MD5 net/http_protocol/http_header.hpp 14;" d
+HTTP_CONTENT_TYPE net/http_protocol/http_header.hpp 23;" d
+HTTP_COOKIE net/http_protocol/http_header.hpp 25;" d
+HTTP_DATA net/http_protocol/http_header.hpp 15;" d
+HTTP_DNT net/http_protocol/http_header.hpp 24;" d
+HTTP_END net/http_protocol/http_header.hpp 29;" d
+HTTP_ERRNO_GEN net/http_protocol/http_parser.h 282;" d
+HTTP_ERRNO_GEN net/http_protocol/http_parser.h 286;" d
+HTTP_ERRNO_MAP net/http_protocol/http_parser.h /^ HTTP_ERRNO_MAP(HTTP_ERRNO_GEN)$/;" e enum:http_errno
+HTTP_ERRNO_MAP net/http_protocol/http_parser.h 235;" d
+HTTP_ETAG net/http_protocol/http_header.hpp 26;" d
+HTTP_EXPECT net/http_protocol/http_header.hpp 16;" d
+HTTP_FORWARDED net/http_protocol/http_header.hpp 17;" d
+HTTP_HOST net/http_protocol/http_header.hpp 27;" d
+HTTP_IMPL_CONNECTED extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECTED,$/;" e enum:__anon36
+HTTP_IMPL_CONNECTING extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECTING,$/;" e enum:__anon36
+HTTP_IMPL_CONNECT_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECT_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_END extensions/include/net/ihttp.h /^ HTTP_IMPL_END,$/;" e enum:__anon36
+HTTP_IMPL_LOCATION extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATION,$/;" e enum:__anon36
+HTTP_IMPL_LOCATIONED extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATIONED,$/;" e enum:__anon36
+HTTP_IMPL_LOCATION_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATION_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_RECV_BODY extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODY,$/;" e enum:__anon36
+HTTP_IMPL_RECV_BODYED extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODYED,$/;" e enum:__anon36
+HTTP_IMPL_RECV_BODY_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODY_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_RECV_HEAD extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEAD,$/;" e enum:__anon36
+HTTP_IMPL_RECV_HEADED extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEADED,$/;" e enum:__anon36
+HTTP_IMPL_RECV_HEAD_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEAD_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_SEND_BODY extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODY,$/;" e enum:__anon36
+HTTP_IMPL_SEND_BODYED extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODYED,$/;" e enum:__anon36
+HTTP_IMPL_SEND_BODY_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODY_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_SEND_HEAD extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEAD,$/;" e enum:__anon36
+HTTP_IMPL_SEND_HEADED extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEADED,$/;" e enum:__anon36
+HTTP_IMPL_SEND_HEAD_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEAD_FAIL,$/;" e enum:__anon36
+HTTP_IMPL_START extensions/include/net/ihttp.h /^ HTTP_IMPL_START = 0,$/;" e enum:__anon36
+HTTP_IMPL_UNKNOWN extensions/include/net/ihttp.h /^ HTTP_IMPL_UNKNOWN$/;" e enum:__anon36
+HTTP_KEEPALIVE net/http_protocol/http_header.hpp 19;" d
+HTTP_MAX_HEADER_SIZE net/http_protocol/http_parser.h 63;" d
+HTTP_METHOD_CONNECT extensions/include/net/ihttp.h /^ HTTP_METHOD_CONNECT, $/;" e enum:__anon38
+HTTP_METHOD_DELETE extensions/include/net/ihttp.h /^ HTTP_METHOD_DELETE, $/;" e enum:__anon38
+HTTP_METHOD_GET extensions/include/net/ihttp.h /^ HTTP_METHOD_GET, $/;" e enum:__anon38
+HTTP_METHOD_HEAD extensions/include/net/ihttp.h /^ HTTP_METHOD_HEAD, $/;" e enum:__anon38
+HTTP_METHOD_MAP net/http_protocol/http_parser.h /^ HTTP_METHOD_MAP(XX)$/;" e enum:http_method
+HTTP_METHOD_MAP net/http_protocol/http_parser.h 163;" d
+HTTP_METHOD_OPTION extensions/include/net/ihttp.h /^ HTTP_METHOD_OPTION, $/;" e enum:__anon38
+HTTP_METHOD_OTHER extensions/include/net/ihttp.h /^ HTTP_METHOD_OTHER, $/;" e enum:__anon38
+HTTP_METHOD_POST extensions/include/net/ihttp.h /^ HTTP_METHOD_POST, $/;" e enum:__anon38
+HTTP_METHOD_PROPFIND extensions/include/net/ihttp.h /^ HTTP_METHOD_PROPFIND, $/;" e enum:__anon38
+HTTP_METHOD_PURGE extensions/include/net/ihttp.h /^ HTTP_METHOD_PURGE, $/;" e enum:__anon38
+HTTP_METHOD_PUT extensions/include/net/ihttp.h /^ HTTP_METHOD_PUT, $/;" e enum:__anon38
+HTTP_METHOD_UNKNOWN extensions/include/net/ihttp.h /^ HTTP_METHOD_UNKNOWN, $/;" e enum:__anon38
+HTTP_MIME_FILE extensions/include/net/ihttp.h /^ HTTP_MIME_FILE \/\/ http mime file $/;" e enum:__anon40
+HTTP_MIME_PARAM extensions/include/net/ihttp.h /^ HTTP_MIME_PARAM, \/\/ http mime param$/;" e enum:__anon40
+HTTP_PARSER_ERRNO net/http_protocol/http_parser.h 290;" d
+HTTP_PARSER_STRICT net/http_protocol/http_parser.h 52;" d
+HTTP_PARSER_VERSION_MAJOR net/http_protocol/http_parser.h 28;" d
+HTTP_PARSER_VERSION_MINOR net/http_protocol/http_parser.h 29;" d
+HTTP_PARSER_VERSION_PATCH net/http_protocol/http_parser.h 30;" d
+HTTP_RANGE net/http_protocol/http_header.hpp 21;" d
+HTTP_REFERER net/http_protocol/http_header.hpp 20;" d
+HTTP_REQUEST net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
+HTTP_REQUEST_MULTIPART_FORM extensions/include/net/ihttp.h /^ HTTP_REQUEST_MULTIPART_FORM,$/;" e enum:__anon39
+HTTP_REQUEST_NORMAL extensions/include/net/ihttp.h /^ HTTP_REQUEST_NORMAL,$/;" e enum:__anon39
+HTTP_REQUEST_OCTET_STREAM extensions/include/net/ihttp.h /^ HTTP_REQUEST_OCTET_STREAM,$/;" e enum:__anon39
+HTTP_REQUEST_OTHER extensions/include/net/ihttp.h /^ HTTP_REQUEST_OTHER$/;" e enum:__anon39
+HTTP_REQUEST_TEXT_JSON extensions/include/net/ihttp.h /^ HTTP_REQUEST_TEXT_JSON,$/;" e enum:__anon39
+HTTP_REQUEST_TEXT_XML extensions/include/net/ihttp.h /^ HTTP_REQUEST_TEXT_XML,$/;" e enum:__anon39
+HTTP_RESPONSE net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type
+HTTP_STATUS_MAP net/http_protocol/http_parser.h /^ HTTP_STATUS_MAP(XX)$/;" e enum:http_status
+HTTP_STATUS_MAP net/http_protocol/http_parser.h 93;" d
+HTTP_STRERROR_GEN net/http_protocol/http_parser.cpp 462;" d file:
+HTTP_STRERROR_GEN net/http_protocol/http_parser.cpp 469;" d file:
HTTP_UNKNOWN polipo/http.h 115;" d
-HTTP_UPGRADE_INSECURE_REQUESTS http/http/http_header.hpp 22;" d
-HTTP_USE_AGENT http/http/http_header.hpp 18;" d
-HWINSTA compat/darwinossysdef.h /^typedef void* HWINSTA;$/;" t
-HWINSTA compat/posixossysdef.h /^typedef void* HWINSTA;$/;" t
-HWND compat/darwinossysdef.h /^typedef void* HWND;$/;" t
-HWND compat/posixossysdef.h /^typedef void* HWND;$/;" t
+HTTP_UPGRADE_INSECURE_REQUESTS net/http_protocol/http_header.hpp 22;" d
+HTTP_USE_AGENT net/http_protocol/http_header.hpp 18;" d
+HWINSTA crt/darwinossysdef.h /^typedef void* HWINSTA;$/;" t
+HWINSTA crt/posixossysdef.h /^typedef void* HWINSTA;$/;" t
+HWND crt/darwinossysdef.h /^typedef void* HWND;$/;" t
+HWND crt/posixossysdef.h /^typedef void* HWND;$/;" t
HWNDSHADOW uibase/uilib/utils/wndshadow.cpp /^typedef struct HWNDSHADOW$/;" s file:
HandleCustomMessage uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::HandleCustomMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:DuiLib::WindowImplBase
HandleMessage uibase/uilib/control/uicombo.cpp /^LRESULT CComboWnd::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CComboWnd
@@ -3417,12 +3110,14 @@ HandleMessage uibase/uilib/control/uiedit.cpp /^ LRESULT CEditWnd::HandleMessage
HandleMessage uibase/uilib/core/uibase.cpp /^LRESULT CWindowWnd::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CWindowWnd
HandleMessage uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::WindowImplBase
HandleMessage uibase/uiwindowimpl.cpp /^LRESULT CUiWindowsImpl::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:CUiWindowsImpl
+HasATagFileOrTagEnvChanged vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:HasATagFileOrTagEnvChanged()$/;" f
HasAttribute uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasAttribute(LPCTSTR pstrName)$/;" f class:DuiLib::CMarkupNode
HasAttributes uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasAttributes()$/;" f class:DuiLib::CMarkupNode
HasChildren uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasChildren() const$/;" f class:DuiLib::CMarkupNode
HasRowid access/sqlite3.c 10779;" d file:
HasRowid logs/sqlite3.c 10779;" d file:
HasSiblings uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasSiblings() const$/;" f class:DuiLib::CMarkupNode
+HasTagEnvChanged vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:HasTagEnvChanged()$/;" f
Hash access/sqlite3.c /^struct Hash {$/;" s file:
Hash access/sqlite3.c /^typedef struct Hash Hash;$/;" t typeref:struct:Hash file:
Hash logs/sqlite3.c /^struct Hash {$/;" s file:
@@ -3443,21 +3138,21 @@ HomeUp uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::HomeUp()$/;" f cl
HostAddressPtr polipo/dns.h /^} HostAddressRec, *HostAddressPtr;$/;" t typeref:struct:_HostAddress
HostAddressRec polipo/dns.h /^} HostAddressRec, *HostAddressPtr;$/;" t typeref:struct:_HostAddress
HwndShadow uibase/uilib/utils/wndshadow.cpp /^} HwndShadow;$/;" t typeref:struct:HWNDSHADOW file:
-I base/algorithm/compat_md5.c 6;" d file:
I polipo/md5.c 76;" d file:
-ICMP_ADDRESS net/protocol/icmp.h 20;" d
-ICMP_ADDRESSREPLY net/protocol/icmp.h 21;" d
-ICMP_DEST_UNREACH net/protocol/icmp.h 10;" d
-ICMP_ECHO net/protocol/icmp.h 13;" d
-ICMP_ECHOREPLY net/protocol/icmp.h 9;" d
-ICMP_INFO_REPLY net/protocol/icmp.h 19;" d
-ICMP_INFO_REQUEST net/protocol/icmp.h 18;" d
-ICMP_PARAMETERPROB net/protocol/icmp.h 15;" d
-ICMP_REDIRECT net/protocol/icmp.h 12;" d
-ICMP_SOURCE_QUENCH net/protocol/icmp.h 11;" d
-ICMP_TIMESTAMP net/protocol/icmp.h 16;" d
-ICMP_TIMESTAMPREPLY net/protocol/icmp.h 17;" d
-ICMP_TIME_EXCEEDED net/protocol/icmp.h 14;" d
+I stdcrt/algorithm/compat_md5.c 6;" d file:
+ICMP_ADDRESS net/protocol/icmp.h 25;" d
+ICMP_ADDRESSREPLY net/protocol/icmp.h 26;" d
+ICMP_DEST_UNREACH net/protocol/icmp.h 15;" d
+ICMP_ECHO net/protocol/icmp.h 18;" d
+ICMP_ECHOREPLY net/protocol/icmp.h 14;" d
+ICMP_INFO_REPLY net/protocol/icmp.h 24;" d
+ICMP_INFO_REQUEST net/protocol/icmp.h 23;" d
+ICMP_PARAMETERPROB net/protocol/icmp.h 20;" d
+ICMP_REDIRECT net/protocol/icmp.h 17;" d
+ICMP_SOURCE_QUENCH net/protocol/icmp.h 16;" d
+ICMP_TIMESTAMP net/protocol/icmp.h 21;" d
+ICMP_TIMESTAMPREPLY net/protocol/icmp.h 22;" d
+ICMP_TIME_EXCEEDED net/protocol/icmp.h 19;" d
IComClassFactory_AddRef include/dlcom/unknown.h 109;" d
IComClassFactory_CreateInstance include/dlcom/unknown.h 116;" d
IComClassFactory_LockServer include/dlcom/unknown.h 119;" d
@@ -3467,14 +3162,13 @@ IContainerUI uibase/uilib/core/uicontainer.h /^class IContainerUI$/;" c namespac
IDI_ICON1 guidgen/resource.h 5;" d
IDI_ICON1 main/resource.h 5;" d
IDI_ICON1 testmain/resource.h 5;" d
-ID_VOID_MAIN CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 6;" d file:
IDlgBuilderCB uibase/uilib/core/uidlgbuilder.h /^class IDlgBuilderCB$/;" c namespace:DuiLib
-II base/algorithm/compat_md5.c 26;" d file:
II polipo/md5.c 111;" d file:
-IID compat/compat_guid.hpp /^typedef GUID IID;$/;" t
+II stdcrt/algorithm/compat_md5.c 26;" d file:
+IID crt/crt_guid.hpp /^typedef GUID IID;$/;" t
IID_ITextHost uibase/uilib/control/uirichedit.cpp /^EXTERN_C const IID IID_ITextHost = { \/* c5bdd8d0-d26e-11ce-a89e-00aa006cadc5 *\/$/;" v
IID_ITextServices uibase/uilib/control/uirichedit.cpp /^EXTERN_C const IID IID_ITextServices = { \/\/ 8d33f740-cf58-11ce-a89d-00aa006cadc5$/;" v
-IID_NULL compat/compat_guid.hpp 43;" d
+IID_NULL crt/crt_guid.hpp 43;" d
IImpModuleBase include/dlcom/calldll.hpp /^ IImpModuleBase(const TCHAR *pModuleName):m_hMod(NULL)$/;" f class:IImpModuleBase
IImpModuleBase include/dlcom/calldll.hpp /^ class CPP_NO_VTABLE IImpModuleBase$/;" c
IImpModuleBase include/utilex/calldll.hpp /^ IImpModuleBase()$/;" f class:IImpModuleBase
@@ -3484,16 +3178,16 @@ IListItemUI uibase/uilib/control/uilist.h /^class IListItemUI$/;" c namespace:Du
IListOwnerUI uibase/uilib/control/uilist.h /^class IListOwnerUI$/;" c namespace:DuiLib
IListUI uibase/uilib/control/uilist.h /^class IListUI : public IListOwnerUI$/;" c namespace:DuiLib
IMessageFilterUI uibase/uilib/core/uimanager.h /^class IMessageFilterUI$/;" c namespace:DuiLib
-IN6ADDRSZ base/net/compat_sockinet.c 265;" d file:
-INADDRSZ base/net/compat_sockinet.c 266;" d file:
+IN6ADDRSZ stdcrt/net/compat_sockinet.c 264;" d file:
+INADDRSZ stdcrt/net/compat_sockinet.c 265;" d file:
INDEX_TAG container/plugins.cpp 5;" d file:
INFODIR polipo/Makefile /^INFODIR = $(PREFIX)\/info$/;" m
-INSNULL compat/compat_tpid.hpp 11;" d
-INSNULL compat/compat_tpid.hpp 18;" d
-INSNULL compat/compat_tpid.hpp 27;" d
-INT compat/darwinossysdef.h /^typedef int INT;$/;" t
-INT compat/posixossysdef.h /^typedef int INT;$/;" t
-INT16SZ base/net/compat_sockinet.c 267;" d file:
+INSNULL crt/crt_tpid.hpp 11;" d
+INSNULL crt/crt_tpid.hpp 18;" d
+INSNULL crt/crt_tpid.hpp 27;" d
+INT crt/darwinossysdef.h /^typedef int INT;$/;" t
+INT crt/posixossysdef.h /^typedef int INT;$/;" t
+INT16SZ stdcrt/net/compat_sockinet.c 266;" d file:
INT16_TYPE access/sqlite3.c 8320;" d file:
INT16_TYPE access/sqlite3.c 8322;" d file:
INT16_TYPE logs/sqlite3.c 8320;" d file:
@@ -3504,18 +3198,18 @@ INT8_TYPE logs/sqlite3.c 8334;" d file:
INT8_TYPE logs/sqlite3.c 8336;" d file:
INTERFACE access/sqlite3.c 114893;" d file:
INTERFACE logs/sqlite3.c 114893;" d file:
-INT_PTR compat/compat_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t
-INT_PTR compat/compat_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t
+INT_PTR crt/crt_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t
+INT_PTR crt/crt_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t
INULL include/dlcom/unknown.h 140;" d
INVALID_FILE_ATTRIBUTES access/sqlite3.c 31452;" d file:
INVALID_FILE_ATTRIBUTES logs/sqlite3.c 31452;" d file:
-INVALID_HANDLE_VALUE compat/compat_tpid.hpp 24;" d
-INVALID_HANDLE_VALUE compat/compat_tpid.hpp 33;" d
-INVALID_NET_PORT compat/compat_sock.h 15;" d
+INVALID_HANDLE_VALUE crt/crt_tpid.hpp 24;" d
+INVALID_HANDLE_VALUE crt/crt_tpid.hpp 33;" d
+INVALID_NET_PORT crt/crt_sock.h 15;" d
INVALID_SET_FILE_POINTER access/sqlite3.c 33507;" d file:
INVALID_SET_FILE_POINTER logs/sqlite3.c 33507;" d file:
-INVALID_SOCKET compat/compat_sock.h 57;" d
-INVALID_SOCKET compat/compat_sock.h 65;" d
+INVALID_SOCKET crt/crt_sock.h 57;" d
+INVALID_SOCKET crt/crt_sock.h 65;" d
IN_DECLARE_VTAB access/sqlite3.c 11765;" d file:
IN_DECLARE_VTAB access/sqlite3.c 11767;" d file:
IN_DECLARE_VTAB logs/sqlite3.c 11765;" d file:
@@ -3535,7 +3229,7 @@ IOTRACE access/sqlite3.c 12850;" d file:
IOTRACE access/sqlite3.c 12854;" d file:
IOTRACE logs/sqlite3.c 12850;" d file:
IOTRACE logs/sqlite3.c 12854;" d file:
-IOV_MAX compat/compat_msghdr.h 15;" d
+IOV_MAX crt/crt_msghdr.h 15;" d
IO_BUF3 polipo/io.h 37;" d
IO_BUF_LOCATION polipo/io.h 39;" d
IO_CHUNKED polipo/io.h 32;" d
@@ -3550,32 +3244,32 @@ ISAUTOVACUUM access/sqlite3.c 50367;" d file:
ISAUTOVACUUM logs/sqlite3.c 50365;" d file:
ISAUTOVACUUM logs/sqlite3.c 50367;" d file:
IS_AGENT extensions/include/msgbus/imsgbus.h 25;" d
-IS_ALPHA http/http/http_parser.cpp 411;" d file:
-IS_ALPHANUM http/http/http_parser.cpp 413;" d file:
+IS_ALPHA net/http_protocol/http_parser.cpp 411;" d file:
+IS_ALPHANUM net/http_protocol/http_parser.cpp 413;" d file:
IS_BIG_INT access/sqlite3.c 7931;" d file:
IS_BIG_INT logs/sqlite3.c 7931;" d file:
IS_BROKER extensions/include/msgbus/imsgbus.h 22;" d
IS_CONSUMER extensions/include/msgbus/imsgbus.h 24;" d
-IS_HEADER_CHAR http/http/http_parser.cpp 440;" d file:
-IS_HEX http/http/http_parser.cpp 414;" d file:
-IS_HOST_CHAR http/http/http_parser.cpp 427;" d file:
-IS_HOST_CHAR http/http/http_parser.cpp 432;" d file:
+IS_HEADER_CHAR net/http_protocol/http_parser.cpp 440;" d file:
+IS_HEX net/http_protocol/http_parser.cpp 414;" d file:
+IS_HOST_CHAR net/http_protocol/http_parser.cpp 427;" d file:
+IS_HOST_CHAR net/http_protocol/http_parser.cpp 432;" d file:
IS_LOCK_ERROR access/sqlite3.c 23532;" d file:
IS_LOCK_ERROR logs/sqlite3.c 23532;" d file:
-IS_MARK http/http/http_parser.cpp 415;" d file:
-IS_NUM http/http/http_parser.cpp 412;" d file:
+IS_MARK net/http_protocol/http_parser.cpp 415;" d file:
+IS_NUM net/http_protocol/http_parser.cpp 412;" d file:
IS_PRODUCER extensions/include/msgbus/imsgbus.h 23;" d
IS_REP extensions/include/msgbus/imsgbus.h 27;" d
IS_REQ extensions/include/msgbus/imsgbus.h 26;" d
IS_UI_BUTTON extensions/include/ui/iuibase.h 31;" d
IS_UI_MESSAGELOOP extensions/include/ui/iuibase.h 25;" d
IS_UI_WINDOWS extensions/include/ui/iuibase.h 28;" d
-IS_URL_CHAR http/http/http_parser.cpp 426;" d file:
-IS_URL_CHAR http/http/http_parser.cpp 430;" d file:
-IS_USERINFO_CHAR http/http/http_parser.cpp 418;" d file:
-ITER compat/compat_iterator.h /^struct ITER {$/;" s
-ITER compat/compat_iterator.h /^typedef struct ITER ITER;$/;" t typeref:struct:ITER
-ITER_INFO compat/compat_iterator.h 34;" d
+IS_URL_CHAR net/http_protocol/http_parser.cpp 426;" d file:
+IS_URL_CHAR net/http_protocol/http_parser.cpp 430;" d file:
+IS_USERINFO_CHAR net/http_protocol/http_parser.cpp 418;" d file:
+ITER crt/crt_iterator.h /^struct ITER {$/;" s
+ITER crt/crt_iterator.h /^typedef struct ITER ITER;$/;" t typeref:struct:ITER
+ITER_INFO crt/crt_iterator.h 34;" d
IcuCursor access/sqlite3.c /^struct IcuCursor {$/;" s file:
IcuCursor access/sqlite3.c /^typedef struct IcuCursor IcuCursor;$/;" t typeref:struct:IcuCursor file:
IcuCursor logs/sqlite3.c /^struct IcuCursor {$/;" s file:
@@ -3598,8 +3292,8 @@ IdList logs/sqlite3.c /^struct IdList {$/;" s file:
IdList logs/sqlite3.c /^typedef struct IdList IdList;$/;" t typeref:struct:IdList file:
IdList_item access/sqlite3.c /^ struct IdList_item {$/;" s struct:IdList file:
IdList_item logs/sqlite3.c /^ struct IdList_item {$/;" s struct:IdList file:
-Id_Faild http/httptimpl.cpp /^ULONG CHttptImpl::Id_Faild(ULONG ulid) {$/;" f class:CHttptImpl
-Id_Suc http/httptimpl.cpp /^ULONG CHttptImpl::Id_Suc(ULONG ulid) {$/;" f class:CHttptImpl
+Id_Faild net/httptimpl.cpp /^ULONG CHttptImpl::Id_Faild(ULONG ulid) {$/;" f class:CHttptImpl
+Id_Suc net/httptimpl.cpp /^ULONG CHttptImpl::Id_Suc(ULONG ulid) {$/;" f class:CHttptImpl
IfNotOmitAV access/sqlite3.c 50733;" d file:
IfNotOmitAV access/sqlite3.c 50735;" d file:
IfNotOmitAV logs/sqlite3.c 50733;" d file:
@@ -3607,7 +3301,7 @@ IfNotOmitAV logs/sqlite3.c 50735;" d file:
IgnorableOrderby access/sqlite3.c 11561;" d file:
IgnorableOrderby logs/sqlite3.c 11561;" d file:
InLoop access/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon16::__anon17 file:
-InLoop logs/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon61::__anon62 file:
+InLoop logs/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon56::__anon57 file:
Incrblob access/sqlite3.c /^struct Incrblob {$/;" s file:
Incrblob access/sqlite3.c /^typedef struct Incrblob Incrblob;$/;" t typeref:struct:Incrblob file:
Incrblob logs/sqlite3.c /^struct Incrblob {$/;" s file:
@@ -3625,25 +3319,27 @@ IndexSample access/sqlite3.c /^typedef struct IndexSample IndexSample;$/;" t typ
IndexSample logs/sqlite3.c /^struct IndexSample {$/;" s file:
IndexSample logs/sqlite3.c /^typedef struct IndexSample IndexSample;$/;" t typeref:struct:IndexSample file:
Inflate uibase/uilib/utils/utils.cpp /^ void CDuiRect::Inflate(int cx, int cy)$/;" f class:DuiLib::CDuiRect
-Init access/dbimpl.cpp /^std_method_impl CDatabaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CDatabaseImpl
-Init asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CAsynFrameImpl
+Init access/dbimpl.cpp /^std_method_impl CDatabaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CDatabaseImpl
+Init asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAsynFrameImpl
Init container/mainrun.cpp /^std_method_impl CMainRun::Init(_pinstance hInstance, basic_tchar* argv[], int iargc)$/;" f class:CMainRun
Init dispatch/AppDispatch.java /^ public String Init(String path) {$/;" m class:AppDispatch
Init dispatch/src/loadcontainer.cc /^int CLoadContainer::Init(_pinstance hinstance, const basic_tchar* path, const char* code)$/;" f class:CLoadContainer
-Init http/httpimpl.cpp /^std_method_impl CHttpImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CHttpImpl
-Init http/httptimpl.cpp /^std_method_impl CHttptImpl::Init(ITcpSocket* pIAsyncTcpSocket, int sbuflen, int rbuflen,$/;" f class:CHttptImpl
-Init logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogDataBaseImpl
-Init logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogFiltersImpl
-Init logs/logsimpl.cpp /^std_method_impl CLogsImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogsImpl
-Init mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMainViewImpl
-Init mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMemPoolImpl
+Init logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogDataBaseImpl
+Init logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogFiltersImpl
+Init logs/logsimpl.cpp /^std_method_impl CLogsImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogsImpl
+Init mainui/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl
+Init mainuiapp/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl
+Init mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMainViewImpl
+Init mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMemPoolImpl
Init msgbus/broker.cpp /^std_method_impl CBrokerImpl::Init()$/;" f class:CBrokerImpl
-Init msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMsgBusImpl
-Init net/netimpl.cpp /^std_method_impl CNetImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CNetImpl
-Init render/renderimpl.cpp /^std_method_impl CRenderImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CRenderImpl
-Init res/fontimpl.cpp /^std_method_impl CFontImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CFontImpl
-Init res/langimpl.cpp /^std_method_impl CLangImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLangImpl
-Init uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CUiBaseImpl
+Init msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMsgBusImpl
+Init net/httptimpl.cpp /^std_method_impl CHttptImpl::Init(ITcpSocket* pIAsyncTcpSocket, int sbuflen, int rbuflen,$/;" f class:CHttptImpl
+Init net/netimpl.cpp /^std_method_impl CNetImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CNetImpl
+Init render/renderimpl.cpp /^std_method_impl CRenderImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CRenderImpl
+Init res/fontimpl.cpp /^std_method_impl CFontImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CFontImpl
+Init res/langimpl.cpp /^std_method_impl CLangImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLangImpl
+Init testmain/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl
+Init uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CUiBaseImpl
Init uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::Init()$/;" f class:CUiControlImpl
Init uibase/uilib/control/uicombo.cpp /^void CComboWnd::Init(CComboUI* pOwner)$/;" f class:DuiLib::CComboWnd
Init uibase/uilib/control/uidatetime.cpp /^ void CDateTimeWnd::Init(CDateTimeUI* pOwner)$/;" f class:DuiLib::CDateTimeWnd
@@ -3653,23 +3349,25 @@ Init uibase/uilib/core/uicontrol.cpp /^ void CControlUI::Init()$/;" f class:DuiL
Init uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::Init(HWND hWnd, LPCTSTR pstrName)$/;" f class:DuiLib::CPaintManagerUI
Init uibase/uilib/layout/uichildlayout.cpp /^ void CChildLayoutUI::Init()$/;" f class:DuiLib::CChildLayoutUI
InitBus mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::InitBus()$/;" f class:CMainViewImpl
-InitContainer include/dlcom/objectrun.hpp /^ int InitContainer(_pinstance instance, basic_tchar* argv[], int argc) {$/;" f class:CContainer
+InitComplete vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:InitComplete()$/;" f
+InitContainer include/dlcom/objectrun.hpp /^ HRESULT InitContainer(_pinstance instance, basic_tchar* argv[], int argc) {$/;" f class:CContainer
InitControls uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::InitControls(CControlUI* pControl, CControlUI* pParent \/*= NULL*\/)$/;" f class:DuiLib::CPaintManagerUI
InitData access/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon7 file:
-InitData logs/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon52 file:
+InitData logs/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon47 file:
InitDefaultCharFormat uibase/uilib/control/uirichedit.cpp /^HRESULT InitDefaultCharFormat(CRichEditUI* re, CHARFORMAT2W* pcf, HFONT hfont) $/;" f namespace:DuiLib
InitDefaultParaFormat uibase/uilib/control/uirichedit.cpp /^HRESULT InitDefaultParaFormat(CRichEditUI* re, PARAFORMAT2* ppf) $/;" f namespace:DuiLib
InitEnv dispatch/AppDispatch.java /^ public static native String InitEnv(String root,String code,int type, int exit);$/;" m class:AppDispatch
InitGifImage uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::InitGifImage()$/;" f class:DuiLib::CGifAnimUI
InitIAT include/dlcom/calldll.hpp /^ virtual void InitIAT()$/;" f class:IImpModuleBase
InitIAT include/utilex/calldll.hpp /^ virtual void InitIAT()$/;" f class:IImpModuleBase
-InitRPCEnv base/init/compat_init.c /^HRESULT InitRPCEnv(LPCSTR guid)$/;" f
-InitSocketEnv base/init/compat_init.c /^HRESULT InitSocketEnv(int low, int high)$/;" f
+InitRPCEnv stdcrt/init/compat_init.c /^HRESULT InitRPCEnv(LPCSTR guid)$/;" f
+InitSocketEnv stdcrt/init/compat_init.c /^HRESULT InitSocketEnv(int low, int high)$/;" f
InitWindow uibase/uilib/utils/winimplbase.h /^ virtual void InitWindow(){};$/;" f class:DuiLib::WindowImplBase
Initialize dispatch/src/dispatch.cc /^ void Initialize(Local