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 d350c9672db58eb3c8538a03d8d87c1b4847dce0..5b32b3e636dc618a405dc71a2797c1f8f6475b05 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,44 +2,58 @@ cmake_minimum_required(VERSION 2.8)
project(mainapp)
-if(CMAKE_BUILD_TYPE STREQUAL Debug)
- set(CMAKE_BUILD_TYPE Debug)
- add_definitions(-DDEBUG)
- message("-- Debug Compile Project")
- set(compile "-g3 -fPIC -fvisibility=hidden")
- set(static_compile "-g3 -fPIC -fvisibility=hidden")
- set(by3rd_library_output "${PROJECT_SOURCE_DIR}/3rd/lib" CACHE INTERNAL "3rd Library" )
-else()
- set(CMAKE_BUILD_TYPE Release)
- set(compile "-O3 -fPIC -fvisibility=hidden")
- set(static_compile "-g3 -fPIC -fvisibility=hidden")
- message("-- Release Compile Project")
- set(by3rd_library_output "${PROJECT_SOURCE_DIR}/3rd/lib" CACHE INTERNAL "3rd Library" )
+# C compiler
+if(CMAKE_C_COMPILER_ID MATCHES "GNU")
+ set(USING_GCC 1)
+ message("-- C:Compiler: gcc")
endif()
-set(by3rd_library_include "${PROJECT_SOURCE_DIR}/3rd/include" CACHE INTERNAL "3rd include" )
-set(dynamic "-fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions")
-set(execute "-Wall -Werror -fexceptions")
-set(static "-fPIC -fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions")
+if(CMAKE_C_COMPILER_ID MATCHES "Clang")
+ set(USING_CLANG 1)
+ message("-- C:Compiler: clang")
+endif()
-message("-- base-include: ${PROJECT_SOURCE_DIR}/include/")
-message("-- base-include: ${by3rd_library_include}/")
-message("-- base-lib: ${PROJECT_SOURCE_DIR}/libs/${CMAKE_BUILD_TYPE}/")
-message("-- base-lib: ${PROJECT_SOURCE_DIR}/lib/${CMAKE_BUILD_TYPE}/")
+if(CMAKE_C_COMPILER_ID MATCHES "AppleClang")
+ set(USING_APPLECLANG 1)
+ message("-- C:Compiler: apple_clang")
+endif()
-message("-- Compile: ${CMAKE_BUILD_TYPE}")
-message("-- Compile param: ${compile}")
+if(CMAKE_C_COMPILER_ID MATCHES "TI")
+ set(USING_TI 1)
+ message("-- C:Compiler: ti")
+endif()
-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}")
-message("-- System: ${CMAKE_SYSTEM}")
+if(CMAKE_C_COMPILER_ID MATCHES "MSVC")
+ set(USING_MSVC 1)
+ message("-- C:Compiler: MSVC")
+endif()
-message("-- OutPut-Path: ${PROJECT_BINARY_DIR}")
+#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()
if (CMAKE_SYSTEM_PROCESSOR MATCHES "armv5te")
set(Target32Bit true)
@@ -96,9 +110,11 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "CYGWIN")
add_definitions("-DWINDOWS")
set(WIN_OS true)
set(compile_os "CYGWIN")
+ add_definitions("-DWIN32")
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
add_definitions("-DWINDOWS")
add_definitions("-DUNICODE")
+ add_definitions("-DWIN32")
set(WIN_OS true)
elseif (CMAKE_SYSTEM_NAME MATCHES "OHOS")
add_definitions("-DOHOS")
@@ -112,51 +128,35 @@ endif()
if (CMAKE_SYSTEM_NAME MATCHES "Android")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/${ANDROID_ABI})
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/${ANDROID_ABI})
link_directories(${PROJECT_SOURCE_DIR}/libs/${ANDROID_ABI})
message("-- Android: LibraryProject-Project: ${PROJECT_SOURCE_DIR}/libs/${ANDROID_ABI}")
-
elseif (CMAKE_SYSTEM_NAME MATCHES "Linux")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
link_directories(${PROJECT_SOURCE_DIR}/libs/)
-
elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
link_directories(${PROJECT_SOURCE_DIR}/libs/)
-
elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
link_directories(${PROJECT_SOURCE_DIR}/libs/)
-
elseif (CMAKE_SYSTEM_NAME MATCHES "CYGWIN")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
link_directories(${PROJECT_SOURCE_DIR}/libs/)
-
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/)
link_directories(${PROJECT_SOURCE_DIR}/libs/)
-
- add_definitions("-DWIN64")
-
elseif (CMAKE_SYSTEM_NAME MATCHES "OHOS")
-
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/${OHOS_ARCH})
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/libs/${OHOS_ARCH})
link_directories(${PROJECT_SOURCE_DIR}/libs/${OHOS_ARCH})
message("-- OHOS: LibraryProject-Project: ${PROJECT_SOURCE_DIR}/libs/${OHOS_ARCH}")
-
else()
message(FATAL_ERROR "unknown CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}")
endif()
@@ -171,19 +171,52 @@ else()
message(FATAL_ERROR "Bit = ${CMAKE_SYSTEM_NAME}")
endif()
+SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
+
+if(CMAKE_BUILD_TYPE STREQUAL Debug)
+ set(CMAKE_BUILD_TYPE Debug)
+ add_definitions(-DDEBUG)
+ set(compile "-g3 -fPIC -fvisibility=hidden")
+ set(static_compile "-g3 -fPIC -fvisibility=hidden")
+ message("-- Debug Compile Project")
+else()
+ set(CMAKE_BUILD_TYPE Release)
+ set(compile "-O3 -fPIC -fvisibility=hidden")
+ set(static_compile "-g3 -fPIC -fvisibility=hidden")
+ message("-- Release Compile Project")
+endif()
+
+set(by3rd_library_output "${PROJECT_SOURCE_DIR}/3rd/lib" CACHE INTERNAL "3rd Library" )
+set(by3rd_library_include "${PROJECT_SOURCE_DIR}/3rd/include" CACHE INTERNAL "3rd include" )
+
+
+set(dynamic "-fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions")
+set(execute "-Wall -Werror -fexceptions")
+set(static "-fPIC -fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions")
+
+message("-- base-include: ${PROJECT_SOURCE_DIR}/include/")
+message("-- base-include: ${by3rd_library_include}/")
+message("-- base-lib: ${PROJECT_SOURCE_DIR}/libs/${CMAKE_BUILD_TYPE}/")
+message("-- base-lib: ${PROJECT_SOURCE_DIR}/lib/${CMAKE_BUILD_TYPE}/")
+message("-- Compile: ${CMAKE_BUILD_TYPE}")
+message("-- Compile param: ${compile}")
+message("-- System: ${CMAKE_SYSTEM_NAME}")
+message("-- System_Info_file: ${CMAKE_SYSTEM_INFO_FILE}")
+message("-- System_Processor: ${CMAKE_SYSTEM_PROCESSOR}")
+message("-- Host_System_Processor: ${CMAKE_HOST_SYSTEM_PROCESSOR}")
+message("-- System: ${CMAKE_SYSTEM}")
+message("-- OutPut-Path: ${PROJECT_BINARY_DIR}")
message("-- OutPut-Project: ${EXECUTABLE_OUTPUT_PATH}")
message("-- OutPut-LibraryProject: ${LIBRARY_OUTPUT_PATH}")
-SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
add_subdirectory(stdcrt)
-add_subdirectory(base_test)
+#add_subdirectory(base_test)
add_subdirectory(main)
add_subdirectory(testmain)
add_subdirectory(guidgen)
add_subdirectory(container)
add_subdirectory(mempool)
-add_subdirectory(http)
add_subdirectory(render)
add_subdirectory(res)
#add_subdirectory(uibase)
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/asynframeimpl.cpp b/asynio/asynframeimpl.cpp
index 9f004437dfcfefec97077286a148b96bd222f2ff..f14deb3462dfcb5bc841007484a88cb5a9850bdd 100644
--- a/asynio/asynframeimpl.cpp
+++ b/asynio/asynframeimpl.cpp
@@ -24,13 +24,10 @@ std_method_impl CAsynFrameImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot,
hr = pRot->QueryInterface(IID_IComRunningObjectTable, (void**)&m_pRot);
rc_assert(hr == S_OK, E_FAIL)
-
- _sem_init(&this->m_asynframe_sem, 0);
return S_OK;
}
std_method_impl CAsynFrameImpl::Uninit()
{
- _sem_destroy(&this->m_asynframe_sem);
return S_OK;
}
std_method_impl CAsynFrameImpl::Start(_pinstance hInstance, UINT uType)
@@ -41,7 +38,7 @@ std_method_impl CAsynFrameImpl::Start(_pinstance hInstance, UINT uType)
set_instance(m_pContextPool);
contexts_init(2);
CThread::Start_Thread();
- _sem_wait(&this->m_asynframe_sem);
+ this->m_asynframe_sem.Wait();
return S_OK;
}
std_method_impl CAsynFrameImpl::Stop(UINT uExitCode)
@@ -129,7 +126,7 @@ std_method_impl CAsynFrameImpl::SetService(bool bstart)
{
if (bstart)
{
- _sem_post(&this->m_asynframe_sem);
+ this->m_asynframe_sem.Post();
}
return S_OK;
}
diff --git a/asynio/asynframeimpl.h b/asynio/asynframeimpl.h
index 72a87f8d4ed106895f241164b4adba38a3d96d92..8f6179fc5326fa1b6c0bb73db069d4bcaa7585c4 100644
--- a/asynio/asynframeimpl.h
+++ b/asynio/asynframeimpl.h
@@ -48,7 +48,7 @@ protected:
private:
_lComPtr m_pRot;
private:
- _sem_t m_asynframe_sem;
+ CSemHandle m_asynframe_sem;
SafePtr m_pContextPool;
};
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/build_tag.sh b/build_tag.sh
index 4b635a710b6cac2befd64b3699e22f3ab5541286..a2769833fddc9d179e2ee23353bec47da971bba5 100755
--- a/build_tag.sh
+++ b/build_tag.sh
@@ -1,6 +1,14 @@
#!/bin/bash
+
+
+function sync_code()
+{
+ git pull
+ git submodule update --init --recursive
+}
+
function update_tag()
{
ctags -R * --exclude=3rd
@@ -75,6 +83,9 @@ if [ $1 == "ins" ];
elif [ $1 == "tag" ];
then
update_tag
+elif [ $1 == "sync" ];
+ then
+ sync_code
else
no_function
fi
diff --git a/container/mainrun.cpp b/container/mainrun.cpp
index 3c38b3b1fa257aa84e0031214e45579339c8a4bc..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)))
@@ -475,8 +485,6 @@ std_method_impl CMainRun::DoPluginsStartFunc(int iArgc, basic_tchar* Argv[], UIN
{
HRESULT hr = S_OK;
- logi("s_strcpy_func %p\n", s_strcpy);
-
ULONG uSize = m_PluginsClsid.size();
rc_assert(uSize > 0, S_OK);
rc_assert(m_pRot.m_p != INULL, E_FAIL);
@@ -495,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;
@@ -598,10 +607,6 @@ std_method_impl CMainRun::RunMsgPlugin_Stop(const _lComPtr* pBase)
std_method_impl CMainRun::Reset()
{
-
- m_pRot.dispose();
- m_plibManager.dispose();
-
m_strRunPath.clear();
m_PluginsClsid.clear();
m_PluginsComponents.clear();
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/objectloader.cpp b/container/objectloader.cpp
index 9cb6118a3472ceac5c9a727fe52546e0c566b485..b3c19a6f84458ff2f4cc17bb6d29db8d81bf5e5d 100644
--- a/container/objectloader.cpp
+++ b/container/objectloader.cpp
@@ -55,7 +55,7 @@ std_method_impl CObjectLoader::Load(LPSTRING path, LPCSTR name)
std_method_impl CObjectLoader::Free()
{
SYNC_OBJ(&m_lockSection)
-
+
ContainerTableiterator it = m_mapContainer.begin();
while (it != m_mapContainer.end())
{
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/http/ihttp.h b/extensions/include/net/ihttp.h
similarity index 87%
rename from extensions/include/http/ihttp.h
rename to extensions/include/net/ihttp.h
index 54157c2c860a30f6a4368bce7f22d5160fbffcbf..bd6179a427d2051246fe958d03a5caf88b2f8a38 100644
--- a/extensions/include/http/ihttp.h
+++ b/extensions/include/net/ihttp.h
@@ -134,19 +134,4 @@ interface IHttp_s : public IBase
_DEFINE_IID(IID_IHttp_s,
0x75bd9caf, 0x2d0d, 0x4408, 0xb4, 0x81, 0x65, 0x5f, 0x30, 0xf8, 0x61, 0x3f);
-interface IHttp : public IBase
-{
- std_method(CreateHttp_t)(IBase **pBase) PURE;
- std_method(CreateHttp_s)(IBase **pBase) PURE;
-};
-
-
-// {00B3A5DF-7D0F-4629-BAB7-F91D694981F5}
-_DEFINE_IID(IID_IHttp,
- 0xb3a5df, 0x7d0f, 0x4629, 0xba, 0xb7, 0xf9, 0x1d, 0x69, 0x49, 0x81, 0xf5);
-
-// {ED660EF7-7D0B-4CBE-8D92-D5F225434464}
-_DEFINE_GUID(CLSID_IHttp,
- 0xed660ef7, 0x7d0b, 0x4cbe, 0x8d, 0x92, 0xd5, 0xf2, 0x25, 0x43, 0x44, 0x64);
-
#endif
diff --git a/extensions/include/net/inet.h b/extensions/include/net/inet.h
index 12f1f58832a713fddc1bbb4a5560042666c5b877..3224502231c82e97c3086846ca79f838301d10df 100644
--- a/extensions/include/net/inet.h
+++ b/extensions/include/net/inet.h
@@ -8,7 +8,8 @@ typedef enum NET_PROTOCOL
{
Protocol_base = 0,
Protocol_websocket = 1,
- Protocol_dns = 2
+ Protocol_dns = 2,
+ Protocol_http = 3
}Net_Protocol;
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/extensions/include/ui/iuicontrol.h b/extensions/include/ui/iuicontrol.h
index 590fd16b05ef507151dc3679c0f5eeb855a2f159..f44a7e5fa8593e771ecf964c16fe809400ad8651 100644
--- a/extensions/include/ui/iuicontrol.h
+++ b/extensions/include/ui/iuicontrol.h
@@ -56,7 +56,6 @@ interface IUIControl : public IBase
std_method(SetFocus)() PURE;
std_method(Init)() PURE;
std_method(Event)(const NotifyEvent* event) PURE;
- //////////////////////////////////////////////////////////////////////////
std_method_(int, GetWidth)() PURE;
std_method_(int, GetHeight)() PURE;
std_method_(int, GetX)() PURE;
@@ -67,22 +66,18 @@ interface IUIControl : public IBase
std_method(SetPos)(RECT rc) PURE;
std_method_(RECT, GetRelativePos)() PURE;
std_method(SetRelativePos)(RECT rc) PURE;
- //////////////////////////////////////////////////////////////////////////
std_method_(UINT, GetBorderStyle)() PURE;
std_method(SetBorderStyle)(UINT nStyle) PURE;
std_method_(RECT, GetPadding)() PURE;
std_method(SetPadding)(RECT rc) PURE;
- //////////////////////////////////////////////////////////////////////////
std_method_(LPSTRING, GetBkImage)() PURE;
std_method(SetBkImage)(LPSTRING name) PURE;
std_method_(DWORD, GetBkColor)() PURE;
std_method(SetBkColor)(DWORD dwBackColor) PURE;
- //////////////////////////////////////////////////////////////////////////
std_method_(LPSTRING, GetToolTip)() PURE;
std_method(SetToolTip)(LPSTRING pstrText) PURE;
std_method_(int, GetToolTipWidth)() PURE;
std_method(SetToolTipWidth)(int nWidth) PURE;
- //////////////////////////////////////////////////////////////////////////
std_method_(DWORD, GetBorderColor)() PURE;
std_method(SetBorderColor)(DWORD dwBorderColor) PURE;
std_method_(DWORD, GetFocusBorderColor)() PURE;
@@ -91,7 +86,6 @@ interface IUIControl : public IBase
std_method(SetBorderRound)(SIZE cxyRound) PURE;
std_method_(SIZE, GetBorderSize)() PURE;
std_method(SetBorderSize)(SIZE rc) PURE;
- //////////////////////////////////////////////////////////////////////////
};
// {50B8554A-2D0F-4490-AE4E-83AE3E67DA0F}
diff --git a/framwork.xcodeproj/project.pbxproj b/framwork.xcodeproj/project.pbxproj
index c14938470c7631fce1f13ddc25285d1f9c2e638e..2298f2f36cd156326aa950444da1ac418f4e2cb8 100644
--- a/framwork.xcodeproj/project.pbxproj
+++ b/framwork.xcodeproj/project.pbxproj
@@ -208,31 +208,6 @@
A116949E2713149700CBA348 /* targetver.h in Headers */ = {isa = PBXBuildFile; fileRef = A116948E2713149700CBA348 /* targetver.h */; };
A119CCE7271F0DAA00EF6077 /* appviewimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A119CCE5271F0DAA00EF6077 /* appviewimpl.cpp */; };
A119CCF4271F22B500EF6077 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A119CCF3271F22B500EF6077 /* main.cpp */; };
- A1351F7B272054500080B9B4 /* http.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F79272054500080B9B4 /* http.h */; settings = {ATTRIBUTES = (Public, ); }; };
- A1351F7E272054500080B9B4 /* http.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1351F77272054500080B9B4 /* http.framework */; };
- A1351F7F272054500080B9B4 /* http.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A1351F77272054500080B9B4 /* http.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- A1351F97272054700080B9B4 /* dllmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F832720546F0080B9B4 /* dllmain.cpp */; };
- A1351F98272054700080B9B4 /* http_header.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A1351F852720546F0080B9B4 /* http_header.hpp */; };
- A1351F99272054700080B9B4 /* httputil.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F862720546F0080B9B4 /* httputil.h */; };
- A1351F9A272054700080B9B4 /* http_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F872720546F0080B9B4 /* http_parser.h */; };
- A1351F9B272054700080B9B4 /* chttpparser.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F882720546F0080B9B4 /* chttpparser.h */; };
- A1351F9C272054700080B9B4 /* http_parser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F892720546F0080B9B4 /* http_parser.cpp */; };
- A1351F9D272054700080B9B4 /* http_content_type.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A1351F8A2720546F0080B9B4 /* http_content_type.hpp */; };
- A1351F9E272054700080B9B4 /* httputil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F8B2720546F0080B9B4 /* httputil.cpp */; };
- A1351F9F272054700080B9B4 /* http_content_type.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F8C2720546F0080B9B4 /* http_content_type.cpp */; };
- A1351FA0272054700080B9B4 /* chttpparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F8D2720546F0080B9B4 /* chttpparser.cpp */; };
- A1351FA1272054700080B9B4 /* http_header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F8E2720546F0080B9B4 /* http_header.cpp */; };
- A1351FA2272054700080B9B4 /* stdafx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F8F2720546F0080B9B4 /* stdafx.cpp */; };
- A1351FA3272054700080B9B4 /* httptimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F902720546F0080B9B4 /* httptimpl.cpp */; };
- A1351FA4272054700080B9B4 /* httpimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F912720546F0080B9B4 /* httpimpl.cpp */; };
- A1351FA5272054700080B9B4 /* httptimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F92272054700080B9B4 /* httptimpl.h */; };
- A1351FA6272054700080B9B4 /* interface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1351F93272054700080B9B4 /* interface.cpp */; };
- A1351FA7272054700080B9B4 /* stdafx.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F94272054700080B9B4 /* stdafx.h */; };
- A1351FA8272054700080B9B4 /* targetver.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F95272054700080B9B4 /* targetver.h */; };
- A1351FA9272054700080B9B4 /* httpimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1351F96272054700080B9B4 /* httpimpl.h */; };
- A1351FAA272054880080B9B4 /* http.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1351F77272054500080B9B4 /* http.framework */; };
- A1351FAB272054880080B9B4 /* http.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A1351F77272054500080B9B4 /* http.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- A1351FAE2720548D0080B9B4 /* http.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1351F77272054500080B9B4 /* http.framework */; };
A137A79E2721C44000CD138E /* appviewimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A137A79D2721C44000CD138E /* appviewimpl.cpp */; };
A144AB01272572A30019CA5F /* stdcrt.h in Headers */ = {isa = PBXBuildFile; fileRef = A144AAFF272572A30019CA5F /* stdcrt.h */; settings = {ATTRIBUTES = (Public, ); }; };
A144AB04272572A30019CA5F /* stdcrt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; };
@@ -297,8 +272,94 @@
A144ABC2272574260019CA5F /* stdcrt.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
A144ABC5272574290019CA5F /* stdcrt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; };
A144ABC6272574290019CA5F /* stdcrt.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- A144ABC92725742B0019CA5F /* stdcrt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; };
- A144ABCA2725742B0019CA5F /* stdcrt.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
+ A153D5F2272EDCE80053DE0D /* uibase.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D5F0272EDCE80053DE0D /* uibase.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ A153D650272EDD0D0053DE0D /* uiinterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D5F6272EDD0D0053DE0D /* uiinterface.cpp */; };
+ A153D651272EDD0D0053DE0D /* uibaseimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D5F7272EDD0D0053DE0D /* uibaseimpl.h */; };
+ A153D652272EDD0D0053DE0D /* interface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D5F8272EDD0D0053DE0D /* interface.cpp */; };
+ A153D653272EDD0D0053DE0D /* uibaseimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D5F9272EDD0D0053DE0D /* uibaseimpl.cpp */; };
+ A153D654272EDD0D0053DE0D /* uimessageloopimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D5FA272EDD0D0053DE0D /* uimessageloopimpl.h */; };
+ A153D655272EDD0D0053DE0D /* uicontrolimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D5FB272EDD0D0053DE0D /* uicontrolimpl.h */; };
+ A153D656272EDD0D0053DE0D /* targetver.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D5FC272EDD0D0053DE0D /* targetver.h */; };
+ A153D657272EDD0D0053DE0D /* uirender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D5FF272EDD0D0053DE0D /* uirender.cpp */; };
+ A153D658272EDD0D0053DE0D /* uibase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D600272EDD0D0053DE0D /* uibase.cpp */; };
+ A153D659272EDD0D0053DE0D /* pugiconfig.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A153D601272EDD0D0053DE0D /* pugiconfig.hpp */; };
+ A153D65A272EDD0D0053DE0D /* uimarkup.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D602272EDD0D0053DE0D /* uimarkup.h */; };
+ A153D65B272EDD0D0053DE0D /* uicontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D603272EDD0D0053DE0D /* uicontainer.cpp */; };
+ A153D65C272EDD0D0053DE0D /* uibase.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D604272EDD0D0053DE0D /* uibase.h */; };
+ A153D65D272EDD0D0053DE0D /* uicontrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D605272EDD0D0053DE0D /* uicontrol.cpp */; };
+ A153D65E272EDD0D0053DE0D /* uidefine.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D606272EDD0D0053DE0D /* uidefine.h */; };
+ A153D65F272EDD0D0053DE0D /* pugixml.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A153D607272EDD0D0053DE0D /* pugixml.hpp */; };
+ A153D660272EDD0D0053DE0D /* uicontrol.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D608272EDD0D0053DE0D /* uicontrol.h */; };
+ A153D661272EDD0D0053DE0D /* uirender.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D609272EDD0D0053DE0D /* uirender.h */; };
+ A153D662272EDD0D0053DE0D /* uicontainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D60A272EDD0D0053DE0D /* uicontainer.h */; };
+ A153D663272EDD0D0053DE0D /* uimarkup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D60B272EDD0D0053DE0D /* uimarkup.cpp */; };
+ A153D664272EDD0D0053DE0D /* uidlgbuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D60C272EDD0D0053DE0D /* uidlgbuilder.cpp */; };
+ A153D665272EDD0D0053DE0D /* pugixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D60D272EDD0D0053DE0D /* pugixml.cpp */; };
+ A153D666272EDD0D0053DE0D /* uimanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D60E272EDD0D0053DE0D /* uimanager.cpp */; };
+ A153D667272EDD0D0053DE0D /* uidlgbuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D60F272EDD0D0053DE0D /* uidlgbuilder.h */; };
+ A153D668272EDD0D0053DE0D /* uimanager.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D610272EDD0D0053DE0D /* uimanager.h */; };
+ A153D669272EDD0D0053DE0D /* uihorizontallayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D612272EDD0D0053DE0D /* uihorizontallayout.h */; };
+ A153D66A272EDD0D0053DE0D /* uichildlayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D613272EDD0D0053DE0D /* uichildlayout.cpp */; };
+ A153D66B272EDD0D0053DE0D /* uiverticallayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D614272EDD0D0053DE0D /* uiverticallayout.cpp */; };
+ A153D66C272EDD0D0053DE0D /* uitilelayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D615272EDD0D0053DE0D /* uitilelayout.cpp */; };
+ A153D66D272EDD0D0053DE0D /* uihorizontallayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D616272EDD0D0053DE0D /* uihorizontallayout.cpp */; };
+ A153D66E272EDD0D0053DE0D /* uitablayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D617272EDD0D0053DE0D /* uitablayout.h */; };
+ A153D66F272EDD0D0053DE0D /* uiverticallayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D618272EDD0D0053DE0D /* uiverticallayout.h */; };
+ A153D670272EDD0D0053DE0D /* uitilelayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D619272EDD0D0053DE0D /* uitilelayout.h */; };
+ A153D671272EDD0D0053DE0D /* uitablayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D61A272EDD0D0053DE0D /* uitablayout.cpp */; };
+ A153D672272EDD0D0053DE0D /* uichildlayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D61B272EDD0D0053DE0D /* uichildlayout.h */; };
+ A153D673272EDD0D0053DE0D /* uidelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D61D272EDD0D0053DE0D /* uidelegate.h */; };
+ A153D674272EDD0D0053DE0D /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D61E272EDD0D0053DE0D /* utils.h */; };
+ A153D675272EDD0D0053DE0D /* utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D61F272EDD0D0053DE0D /* utils.cpp */; };
+ A153D676272EDD0D0053DE0D /* stb_image.c in Sources */ = {isa = PBXBuildFile; fileRef = A153D620272EDD0D0053DE0D /* stb_image.c */; };
+ A153D677272EDD0D0053DE0D /* uidelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D621272EDD0D0053DE0D /* uidelegate.cpp */; };
+ A153D678272EDD0D0053DE0D /* wndshadow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D622272EDD0D0053DE0D /* wndshadow.cpp */; };
+ A153D679272EDD0D0053DE0D /* stb_image.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D623272EDD0D0053DE0D /* stb_image.h */; };
+ A153D67A272EDD0D0053DE0D /* winimplbase.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D624272EDD0D0053DE0D /* winimplbase.h */; };
+ A153D67B272EDD0D0053DE0D /* wndshadow.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D625272EDD0D0053DE0D /* wndshadow.h */; };
+ A153D67C272EDD0D0053DE0D /* winimplbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D626272EDD0D0053DE0D /* winimplbase.cpp */; };
+ A153D67D272EDD0D0053DE0D /* dpi.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A153D627272EDD0D0053DE0D /* dpi.hpp */; };
+ A153D67E272EDD0D0053DE0D /* uiprogress.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D629272EDD0D0053DE0D /* uiprogress.h */; };
+ A153D67F272EDD0D0053DE0D /* uigifanim.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D62A272EDD0D0053DE0D /* uigifanim.h */; };
+ A153D680272EDD0D0053DE0D /* uilabel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D62B272EDD0D0053DE0D /* uilabel.cpp */; };
+ A153D681272EDD0D0053DE0D /* uigifanim.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D62C272EDD0D0053DE0D /* uigifanim.cpp */; };
+ A153D682272EDD0D0053DE0D /* uibutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D62D272EDD0D0053DE0D /* uibutton.cpp */; };
+ A153D683272EDD0D0053DE0D /* uitreeview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D62E272EDD0D0053DE0D /* uitreeview.cpp */; };
+ A153D684272EDD0D0053DE0D /* uilist.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D62F272EDD0D0053DE0D /* uilist.h */; };
+ A153D685272EDD0D0053DE0D /* uicheckbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D630272EDD0D0053DE0D /* uicheckbox.cpp */; };
+ A153D686272EDD0D0053DE0D /* uicombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D631272EDD0D0053DE0D /* uicombo.cpp */; };
+ A153D687272EDD0D0053DE0D /* uitext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D632272EDD0D0053DE0D /* uitext.cpp */; };
+ A153D688272EDD0D0053DE0D /* uiscrollbar.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D633272EDD0D0053DE0D /* uiscrollbar.h */; };
+ A153D689272EDD0D0053DE0D /* uicombo.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D634272EDD0D0053DE0D /* uicombo.h */; };
+ A153D68A272EDD0D0053DE0D /* uidatetime.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D635272EDD0D0053DE0D /* uidatetime.h */; };
+ A153D68B272EDD0D0053DE0D /* uilabel.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D636272EDD0D0053DE0D /* uilabel.h */; };
+ A153D68C272EDD0D0053DE0D /* uiedit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D637272EDD0D0053DE0D /* uiedit.cpp */; };
+ A153D68D272EDD0D0053DE0D /* uicheckbox.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D638272EDD0D0053DE0D /* uicheckbox.h */; };
+ A153D68E272EDD0D0053DE0D /* uidatetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D639272EDD0D0053DE0D /* uidatetime.cpp */; };
+ A153D68F272EDD0D0053DE0D /* uioption.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D63A272EDD0D0053DE0D /* uioption.cpp */; };
+ A153D690272EDD0D0053DE0D /* uiprogress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D63B272EDD0D0053DE0D /* uiprogress.cpp */; };
+ A153D691272EDD0D0053DE0D /* uitext.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D63C272EDD0D0053DE0D /* uitext.h */; };
+ A153D692272EDD0D0053DE0D /* uiedit.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D63D272EDD0D0053DE0D /* uiedit.h */; };
+ A153D693272EDD0D0053DE0D /* uitreeview.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D63E272EDD0D0053DE0D /* uitreeview.h */; };
+ A153D694272EDD0D0053DE0D /* uilist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D63F272EDD0D0053DE0D /* uilist.cpp */; };
+ A153D695272EDD0D0053DE0D /* uiscrollbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D640272EDD0D0053DE0D /* uiscrollbar.cpp */; };
+ A153D696272EDD0D0053DE0D /* uirichedit.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D641272EDD0D0053DE0D /* uirichedit.h */; };
+ A153D697272EDD0D0053DE0D /* uibutton.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D642272EDD0D0053DE0D /* uibutton.h */; };
+ A153D698272EDD0D0053DE0D /* uislider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D643272EDD0D0053DE0D /* uislider.cpp */; };
+ A153D699272EDD0D0053DE0D /* uioption.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D644272EDD0D0053DE0D /* uioption.h */; };
+ A153D69A272EDD0D0053DE0D /* uirichedit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D645272EDD0D0053DE0D /* uirichedit.cpp */; };
+ A153D69B272EDD0D0053DE0D /* uislider.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D646272EDD0D0053DE0D /* uislider.h */; };
+ A153D69C272EDD0D0053DE0D /* dwm.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A153D647272EDD0D0053DE0D /* dwm.hpp */; };
+ A153D69D272EDD0D0053DE0D /* uilib.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D648272EDD0D0053DE0D /* uilib.h */; };
+ A153D69E272EDD0D0053DE0D /* dllmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D649272EDD0D0053DE0D /* dllmain.cpp */; };
+ A153D69F272EDD0D0053DE0D /* stdafx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D64A272EDD0D0053DE0D /* stdafx.cpp */; };
+ A153D6A0272EDD0D0053DE0D /* uimessageloopimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D64B272EDD0D0053DE0D /* uimessageloopimpl.cpp */; };
+ A153D6A1272EDD0D0053DE0D /* stdafx.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D64C272EDD0D0053DE0D /* stdafx.h */; };
+ A153D6A2272EDD0D0053DE0D /* uicontrolimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D64D272EDD0D0053DE0D /* uicontrolimpl.cpp */; };
+ A153D6A3272EDD0D0053DE0D /* uiwindowimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A153D64E272EDD0D0053DE0D /* uiwindowimpl.cpp */; };
+ A153D6A4272EDD0D0053DE0D /* uiwindowimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A153D64F272EDD0D0053DE0D /* uiwindowimpl.h */; };
+ A153D6A5272EDD5F0053DE0D /* stdcrt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; };
+ A153D6A6272EDD5F0053DE0D /* stdcrt.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A144AAFD272572A30019CA5F /* stdcrt.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
A17163F2271DCD190062A998 /* tableinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A17163E0271DCD180062A998 /* tableinfo.h */; };
A17163F3271DCD190062A998 /* dbimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A17163E1271DCD180062A998 /* dbimpl.cpp */; };
A17163F4271DCD190062A998 /* stringutil.h in Headers */ = {isa = PBXBuildFile; fileRef = A17163E2271DCD180062A998 /* stringutil.h */; };
@@ -317,6 +378,18 @@
A1716401271DCD190062A998 /* stdafx.h in Headers */ = {isa = PBXBuildFile; fileRef = A17163EF271DCD190062A998 /* stdafx.h */; };
A1716402271DCD190062A998 /* dbimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A17163F0271DCD190062A998 /* dbimpl.h */; };
A1716403271DCD190062A998 /* stringutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A17163F1271DCD190062A998 /* stringutil.cpp */; };
+ A1F6DB6A27284749002BF005 /* httptimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB5D27284749002BF005 /* httptimpl.h */; };
+ A1F6DB6B27284749002BF005 /* httptimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB5E27284749002BF005 /* httptimpl.cpp */; };
+ A1F6DB6C27284749002BF005 /* http_header.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB6027284749002BF005 /* http_header.hpp */; };
+ A1F6DB6D27284749002BF005 /* httputil.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB6127284749002BF005 /* httputil.h */; };
+ A1F6DB6E27284749002BF005 /* http_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB6227284749002BF005 /* http_parser.h */; };
+ A1F6DB6F27284749002BF005 /* chttpparser.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB6327284749002BF005 /* chttpparser.h */; };
+ A1F6DB7027284749002BF005 /* http_parser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB6427284749002BF005 /* http_parser.cpp */; };
+ A1F6DB7127284749002BF005 /* http_content_type.hpp in Headers */ = {isa = PBXBuildFile; fileRef = A1F6DB6527284749002BF005 /* http_content_type.hpp */; };
+ A1F6DB7227284749002BF005 /* httputil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB6627284749002BF005 /* httputil.cpp */; };
+ A1F6DB7327284749002BF005 /* http_content_type.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB6727284749002BF005 /* http_content_type.cpp */; };
+ A1F6DB7427284749002BF005 /* chttpparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB6827284749002BF005 /* chttpparser.cpp */; };
+ A1F6DB7527284749002BF005 /* http_header.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F6DB6927284749002BF005 /* http_header.cpp */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -474,20 +547,6 @@
remoteGlobalIDString = A107EA1A27173383006A8E8E;
remoteInfo = res;
};
- A1351F7C272054500080B9B4 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = A10FFAA526F8417900A4D864 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = A1351F76272054500080B9B4;
- remoteInfo = http;
- };
- A1351FAC272054880080B9B4 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = A10FFAA526F8417900A4D864 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = A1351F76272054500080B9B4;
- remoteInfo = http;
- };
A1351FAF2720548D0080B9B4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = A10FFAA526F8417900A4D864 /* Project object */;
@@ -593,7 +652,7 @@
remoteGlobalIDString = A144AAFC272572A30019CA5F;
remoteInfo = stdcrt;
};
- A144ABCB2725742B0019CA5F /* PBXContainerItemProxy */ = {
+ A153D6A7272EDD5F0053DE0D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = A10FFAA526F8417900A4D864 /* Project object */;
proxyType = 1;
@@ -713,7 +772,6 @@
A107EBB227173C50006A8E8E /* res.framework in Embed Frameworks */,
A107EBAE27173C50006A8E8E /* render.framework in Embed Frameworks */,
A107EB9E27173C50006A8E8E /* mainview.framework in Embed Frameworks */,
- A1351FAB272054880080B9B4 /* http.framework in Embed Frameworks */,
A107EB8A27173C50006A8E8E /* asynio.framework in Embed Frameworks */,
A107EB9627173C50006A8E8E /* license.framework in Embed Frameworks */,
A144AB99272573EE0019CA5F /* stdcrt.framework in Embed Frameworks */,
@@ -737,7 +795,6 @@
A144AB05272572A30019CA5F /* stdcrt.framework in Embed Frameworks */,
A107EBF727173DBA006A8E8E /* render.framework in Embed Frameworks */,
A107EBE727173DBA006A8E8E /* mainview.framework in Embed Frameworks */,
- A1351F7F272054500080B9B4 /* http.framework in Embed Frameworks */,
A107EBD327173DBA006A8E8E /* asynio.framework in Embed Frameworks */,
A107EBDF27173DBA006A8E8E /* license.framework in Embed Frameworks */,
A107EBEB27173DBA006A8E8E /* mempool.framework in Embed Frameworks */,
@@ -779,24 +836,24 @@
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
- A1351FB5272054BD0080B9B4 /* Embed Frameworks */ = {
+ A144ABA0272573FB0019CA5F /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
- A144ABCA2725742B0019CA5F /* stdcrt.framework in Embed Frameworks */,
+ A144AB9D272573FB0019CA5F /* stdcrt.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
- A144ABA0272573FB0019CA5F /* Embed Frameworks */ = {
+ A153D6A9272EDD5F0053DE0D /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
- A144AB9D272573FB0019CA5F /* stdcrt.framework in Embed Frameworks */,
+ A153D6A6272EDD5F0053DE0D /* stdcrt.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
@@ -1033,28 +1090,6 @@
A119CCF3271F22B500EF6077 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; };
A119CCF8271F231300EF6077 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; };
A119CCF9271F231300EF6077 /* resource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = ""; };
- A1351F77272054500080B9B4 /* http.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = http.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- A1351F79272054500080B9B4 /* http.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = http.h; sourceTree = ""; };
- A1351F7A272054500080B9B4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- A1351F832720546F0080B9B4 /* dllmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dllmain.cpp; sourceTree = ""; };
- A1351F852720546F0080B9B4 /* http_header.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = http_header.hpp; sourceTree = ""; };
- A1351F862720546F0080B9B4 /* httputil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httputil.h; sourceTree = ""; };
- A1351F872720546F0080B9B4 /* http_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http_parser.h; sourceTree = ""; };
- A1351F882720546F0080B9B4 /* chttpparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chttpparser.h; sourceTree = ""; };
- A1351F892720546F0080B9B4 /* http_parser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_parser.cpp; sourceTree = ""; };
- A1351F8A2720546F0080B9B4 /* http_content_type.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = http_content_type.hpp; sourceTree = ""; };
- A1351F8B2720546F0080B9B4 /* httputil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httputil.cpp; sourceTree = ""; };
- A1351F8C2720546F0080B9B4 /* http_content_type.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_content_type.cpp; sourceTree = ""; };
- A1351F8D2720546F0080B9B4 /* chttpparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chttpparser.cpp; sourceTree = ""; };
- A1351F8E2720546F0080B9B4 /* http_header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_header.cpp; sourceTree = ""; };
- A1351F8F2720546F0080B9B4 /* stdafx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stdafx.cpp; sourceTree = ""; };
- A1351F902720546F0080B9B4 /* httptimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httptimpl.cpp; sourceTree = ""; };
- A1351F912720546F0080B9B4 /* httpimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httpimpl.cpp; sourceTree = ""; };
- A1351F92272054700080B9B4 /* httptimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httptimpl.h; sourceTree = ""; };
- A1351F93272054700080B9B4 /* interface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = interface.cpp; sourceTree = ""; };
- A1351F94272054700080B9B4 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; };
- A1351F95272054700080B9B4 /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = targetver.h; sourceTree = ""; };
- A1351F96272054700080B9B4 /* httpimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httpimpl.h; sourceTree = ""; };
A137A79C2721C44000CD138E /* appviewimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appviewimpl.h; sourceTree = ""; };
A137A79D2721C44000CD138E /* appviewimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = appviewimpl.cpp; sourceTree = ""; };
A144AAFD272572A30019CA5F /* stdcrt.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = stdcrt.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -1155,6 +1190,94 @@
A144AB6F272572FD0019CA5F /* compat_cjson.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compat_cjson.c; sourceTree = ""; };
A144AB70272572FD0019CA5F /* compat_endian.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compat_endian.c; sourceTree = ""; };
A144AB71272572FD0019CA5F /* compat_error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compat_error.c; sourceTree = ""; };
+ A153D5EE272EDCE80053DE0D /* uibase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = uibase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ A153D5F0272EDCE80053DE0D /* uibase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = uibase.h; sourceTree = ""; };
+ A153D5F1272EDCE80053DE0D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ A153D5F6272EDD0D0053DE0D /* uiinterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiinterface.cpp; sourceTree = ""; };
+ A153D5F7272EDD0D0053DE0D /* uibaseimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uibaseimpl.h; sourceTree = ""; };
+ A153D5F8272EDD0D0053DE0D /* interface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = interface.cpp; sourceTree = ""; };
+ A153D5F9272EDD0D0053DE0D /* uibaseimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uibaseimpl.cpp; sourceTree = ""; };
+ A153D5FA272EDD0D0053DE0D /* uimessageloopimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uimessageloopimpl.h; sourceTree = ""; };
+ A153D5FB272EDD0D0053DE0D /* uicontrolimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uicontrolimpl.h; sourceTree = ""; };
+ A153D5FC272EDD0D0053DE0D /* targetver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = targetver.h; sourceTree = ""; };
+ A153D5FF272EDD0D0053DE0D /* uirender.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uirender.cpp; sourceTree = ""; };
+ A153D600272EDD0D0053DE0D /* uibase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uibase.cpp; sourceTree = ""; };
+ A153D601272EDD0D0053DE0D /* pugiconfig.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = pugiconfig.hpp; sourceTree = ""; };
+ A153D602272EDD0D0053DE0D /* uimarkup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uimarkup.h; sourceTree = ""; };
+ A153D603272EDD0D0053DE0D /* uicontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uicontainer.cpp; sourceTree = ""; };
+ A153D604272EDD0D0053DE0D /* uibase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uibase.h; sourceTree = ""; };
+ A153D605272EDD0D0053DE0D /* uicontrol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uicontrol.cpp; sourceTree = ""; };
+ A153D606272EDD0D0053DE0D /* uidefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uidefine.h; sourceTree = ""; };
+ A153D607272EDD0D0053DE0D /* pugixml.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = pugixml.hpp; sourceTree = ""; };
+ A153D608272EDD0D0053DE0D /* uicontrol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uicontrol.h; sourceTree = ""; };
+ A153D609272EDD0D0053DE0D /* uirender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uirender.h; sourceTree = ""; };
+ A153D60A272EDD0D0053DE0D /* uicontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uicontainer.h; sourceTree = ""; };
+ A153D60B272EDD0D0053DE0D /* uimarkup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uimarkup.cpp; sourceTree = ""; };
+ A153D60C272EDD0D0053DE0D /* uidlgbuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uidlgbuilder.cpp; sourceTree = ""; };
+ A153D60D272EDD0D0053DE0D /* pugixml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pugixml.cpp; sourceTree = ""; };
+ A153D60E272EDD0D0053DE0D /* uimanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uimanager.cpp; sourceTree = ""; };
+ A153D60F272EDD0D0053DE0D /* uidlgbuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uidlgbuilder.h; sourceTree = ""; };
+ A153D610272EDD0D0053DE0D /* uimanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uimanager.h; sourceTree = ""; };
+ A153D612272EDD0D0053DE0D /* uihorizontallayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uihorizontallayout.h; sourceTree = ""; };
+ A153D613272EDD0D0053DE0D /* uichildlayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uichildlayout.cpp; sourceTree = ""; };
+ A153D614272EDD0D0053DE0D /* uiverticallayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiverticallayout.cpp; sourceTree = ""; };
+ A153D615272EDD0D0053DE0D /* uitilelayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uitilelayout.cpp; sourceTree = ""; };
+ A153D616272EDD0D0053DE0D /* uihorizontallayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uihorizontallayout.cpp; sourceTree = ""; };
+ A153D617272EDD0D0053DE0D /* uitablayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uitablayout.h; sourceTree = ""; };
+ A153D618272EDD0D0053DE0D /* uiverticallayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiverticallayout.h; sourceTree = ""; };
+ A153D619272EDD0D0053DE0D /* uitilelayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uitilelayout.h; sourceTree = ""; };
+ A153D61A272EDD0D0053DE0D /* uitablayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uitablayout.cpp; sourceTree = ""; };
+ A153D61B272EDD0D0053DE0D /* uichildlayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uichildlayout.h; sourceTree = ""; };
+ A153D61D272EDD0D0053DE0D /* uidelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uidelegate.h; sourceTree = ""; };
+ A153D61E272EDD0D0053DE0D /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = ""; };
+ A153D61F272EDD0D0053DE0D /* utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utils.cpp; sourceTree = ""; };
+ A153D620272EDD0D0053DE0D /* stb_image.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stb_image.c; sourceTree = ""; };
+ A153D621272EDD0D0053DE0D /* uidelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uidelegate.cpp; sourceTree = ""; };
+ A153D622272EDD0D0053DE0D /* wndshadow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wndshadow.cpp; sourceTree = ""; };
+ A153D623272EDD0D0053DE0D /* stb_image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stb_image.h; sourceTree = ""; };
+ A153D624272EDD0D0053DE0D /* winimplbase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winimplbase.h; sourceTree = ""; };
+ A153D625272EDD0D0053DE0D /* wndshadow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wndshadow.h; sourceTree = ""; };
+ A153D626272EDD0D0053DE0D /* winimplbase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = winimplbase.cpp; sourceTree = ""; };
+ A153D627272EDD0D0053DE0D /* dpi.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = dpi.hpp; sourceTree = ""; };
+ A153D629272EDD0D0053DE0D /* uiprogress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiprogress.h; sourceTree = ""; };
+ A153D62A272EDD0D0053DE0D /* uigifanim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uigifanim.h; sourceTree = ""; };
+ A153D62B272EDD0D0053DE0D /* uilabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uilabel.cpp; sourceTree = ""; };
+ A153D62C272EDD0D0053DE0D /* uigifanim.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uigifanim.cpp; sourceTree = ""; };
+ A153D62D272EDD0D0053DE0D /* uibutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uibutton.cpp; sourceTree = ""; };
+ A153D62E272EDD0D0053DE0D /* uitreeview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uitreeview.cpp; sourceTree = ""; };
+ A153D62F272EDD0D0053DE0D /* uilist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uilist.h; sourceTree = ""; };
+ A153D630272EDD0D0053DE0D /* uicheckbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uicheckbox.cpp; sourceTree = ""; };
+ A153D631272EDD0D0053DE0D /* uicombo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uicombo.cpp; sourceTree = ""; };
+ A153D632272EDD0D0053DE0D /* uitext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uitext.cpp; sourceTree = ""; };
+ A153D633272EDD0D0053DE0D /* uiscrollbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiscrollbar.h; sourceTree = ""; };
+ A153D634272EDD0D0053DE0D /* uicombo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uicombo.h; sourceTree = ""; };
+ A153D635272EDD0D0053DE0D /* uidatetime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uidatetime.h; sourceTree = ""; };
+ A153D636272EDD0D0053DE0D /* uilabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uilabel.h; sourceTree = ""; };
+ A153D637272EDD0D0053DE0D /* uiedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiedit.cpp; sourceTree = ""; };
+ A153D638272EDD0D0053DE0D /* uicheckbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uicheckbox.h; sourceTree = ""; };
+ A153D639272EDD0D0053DE0D /* uidatetime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uidatetime.cpp; sourceTree = ""; };
+ A153D63A272EDD0D0053DE0D /* uioption.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uioption.cpp; sourceTree = ""; };
+ A153D63B272EDD0D0053DE0D /* uiprogress.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiprogress.cpp; sourceTree = ""; };
+ A153D63C272EDD0D0053DE0D /* uitext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uitext.h; sourceTree = ""; };
+ A153D63D272EDD0D0053DE0D /* uiedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiedit.h; sourceTree = ""; };
+ A153D63E272EDD0D0053DE0D /* uitreeview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uitreeview.h; sourceTree = ""; };
+ A153D63F272EDD0D0053DE0D /* uilist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uilist.cpp; sourceTree = ""; };
+ A153D640272EDD0D0053DE0D /* uiscrollbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiscrollbar.cpp; sourceTree = ""; };
+ A153D641272EDD0D0053DE0D /* uirichedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uirichedit.h; sourceTree = ""; };
+ A153D642272EDD0D0053DE0D /* uibutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uibutton.h; sourceTree = ""; };
+ A153D643272EDD0D0053DE0D /* uislider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uislider.cpp; sourceTree = ""; };
+ A153D644272EDD0D0053DE0D /* uioption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uioption.h; sourceTree = ""; };
+ A153D645272EDD0D0053DE0D /* uirichedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uirichedit.cpp; sourceTree = ""; };
+ A153D646272EDD0D0053DE0D /* uislider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uislider.h; sourceTree = ""; };
+ A153D647272EDD0D0053DE0D /* dwm.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = dwm.hpp; sourceTree = ""; };
+ A153D648272EDD0D0053DE0D /* uilib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uilib.h; sourceTree = ""; };
+ A153D649272EDD0D0053DE0D /* dllmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dllmain.cpp; sourceTree = ""; };
+ A153D64A272EDD0D0053DE0D /* stdafx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stdafx.cpp; sourceTree = ""; };
+ A153D64B272EDD0D0053DE0D /* uimessageloopimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uimessageloopimpl.cpp; sourceTree = ""; };
+ A153D64C272EDD0D0053DE0D /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; };
+ A153D64D272EDD0D0053DE0D /* uicontrolimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uicontrolimpl.cpp; sourceTree = ""; };
+ A153D64E272EDD0D0053DE0D /* uiwindowimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiwindowimpl.cpp; sourceTree = ""; };
+ A153D64F272EDD0D0053DE0D /* uiwindowimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiwindowimpl.h; sourceTree = ""; };
A17163E0271DCD180062A998 /* tableinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tableinfo.h; sourceTree = ""; };
A17163E1271DCD180062A998 /* dbimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbimpl.cpp; sourceTree = ""; };
A17163E2271DCD180062A998 /* stringutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringutil.h; sourceTree = ""; };
@@ -1173,6 +1296,48 @@
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 = ""; };
+ A1F6DB6127284749002BF005 /* httputil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httputil.h; sourceTree = ""; };
+ A1F6DB6227284749002BF005 /* http_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http_parser.h; sourceTree = ""; };
+ A1F6DB6327284749002BF005 /* chttpparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chttpparser.h; sourceTree = ""; };
+ A1F6DB6427284749002BF005 /* http_parser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_parser.cpp; sourceTree = ""; };
+ A1F6DB6527284749002BF005 /* http_content_type.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = http_content_type.hpp; sourceTree = ""; };
+ A1F6DB6627284749002BF005 /* httputil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httputil.cpp; sourceTree = ""; };
+ A1F6DB6727284749002BF005 /* http_content_type.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_content_type.cpp; sourceTree = ""; };
+ A1F6DB6827284749002BF005 /* chttpparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chttpparser.cpp; sourceTree = ""; };
+ A1F6DB6927284749002BF005 /* http_header.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = http_header.cpp; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -1257,7 +1422,6 @@
A107EBB127173C50006A8E8E /* res.framework in Frameworks */,
A107EBAD27173C50006A8E8E /* render.framework in Frameworks */,
A107EB9D27173C50006A8E8E /* mainview.framework in Frameworks */,
- A1351FAA272054880080B9B4 /* http.framework in Frameworks */,
A107EB8927173C50006A8E8E /* asynio.framework in Frameworks */,
A107EB9527173C50006A8E8E /* license.framework in Frameworks */,
A144AB98272573EE0019CA5F /* stdcrt.framework in Frameworks */,
@@ -1277,8 +1441,6 @@
A107EBFA27173DBA006A8E8E /* res.framework in Frameworks */,
A107EBF627173DBA006A8E8E /* render.framework in Frameworks */,
A107EBE627173DBA006A8E8E /* mainview.framework in Frameworks */,
- A1351FAE2720548D0080B9B4 /* http.framework in Frameworks */,
- A1351F7E272054500080B9B4 /* http.framework in Frameworks */,
A144AB04272572A30019CA5F /* stdcrt.framework in Frameworks */,
A107EBD227173DBA006A8E8E /* asynio.framework in Frameworks */,
A107EBDE27173DBA006A8E8E /* license.framework in Frameworks */,
@@ -1313,18 +1475,18 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
- A1351F74272054500080B9B4 /* Frameworks */ = {
+ A144AAFA272572A30019CA5F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- A144ABC92725742B0019CA5F /* stdcrt.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A144AAFA272572A30019CA5F /* Frameworks */ = {
+ A153D5EB272EDCE80053DE0D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ A153D6A5272EDD5F0053DE0D /* stdcrt.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1334,6 +1496,9 @@
A107E8F927172470006A8E8E /* net */ = {
isa = PBXGroup;
children = (
+ A1F6DB5F27284749002BF005 /* http_protocol */,
+ A1F6DB5E27284749002BF005 /* httptimpl.cpp */,
+ A1F6DB5D27284749002BF005 /* httptimpl.h */,
A107E90627172491006A8E8E /* dllmain.cpp */,
A107E90B27172491006A8E8E /* dnsimpl.cpp */,
A107E91A27172492006A8E8E /* dnsimpl.h */,
@@ -1604,6 +1769,7 @@
A10FFAA426F8417900A4D864 = {
isa = PBXGroup;
children = (
+ A1EB047527285B0600214133 /* extensions */,
A144AB09272572DF0019CA5F /* crt */,
A11694A02713154700CBA348 /* include */,
A11694742713144500CBA348 /* container */,
@@ -1620,8 +1786,8 @@
A107EB6D27173B45006A8E8E /* mainuiapp */,
A107EBBB27173D52006A8E8E /* mainui */,
A119CCF2271F22B500EF6077 /* guidgen */,
- A1351F78272054500080B9B4 /* http */,
A144AAFE272572A30019CA5F /* stdcrt */,
+ A153D5EF272EDCE80053DE0D /* uibase */,
A1F1D55F27117AE800442CFE /* Frameworks */,
);
sourceTree = "";
@@ -1728,42 +1894,6 @@
path = guidgen;
sourceTree = "";
};
- A1351F78272054500080B9B4 /* http */ = {
- isa = PBXGroup;
- children = (
- A1351F832720546F0080B9B4 /* dllmain.cpp */,
- A1351F842720546F0080B9B4 /* http */,
- A1351F912720546F0080B9B4 /* httpimpl.cpp */,
- A1351F96272054700080B9B4 /* httpimpl.h */,
- A1351F902720546F0080B9B4 /* httptimpl.cpp */,
- A1351F92272054700080B9B4 /* httptimpl.h */,
- A1351F93272054700080B9B4 /* interface.cpp */,
- A1351F8F2720546F0080B9B4 /* stdafx.cpp */,
- A1351F94272054700080B9B4 /* stdafx.h */,
- A1351F95272054700080B9B4 /* targetver.h */,
- A1351F79272054500080B9B4 /* http.h */,
- A1351F7A272054500080B9B4 /* Info.plist */,
- );
- path = http;
- sourceTree = "";
- };
- A1351F842720546F0080B9B4 /* http */ = {
- isa = PBXGroup;
- children = (
- A1351F852720546F0080B9B4 /* http_header.hpp */,
- A1351F862720546F0080B9B4 /* httputil.h */,
- A1351F872720546F0080B9B4 /* http_parser.h */,
- A1351F882720546F0080B9B4 /* chttpparser.h */,
- A1351F892720546F0080B9B4 /* http_parser.cpp */,
- A1351F8A2720546F0080B9B4 /* http_content_type.hpp */,
- A1351F8B2720546F0080B9B4 /* httputil.cpp */,
- A1351F8C2720546F0080B9B4 /* http_content_type.cpp */,
- A1351F8D2720546F0080B9B4 /* chttpparser.cpp */,
- A1351F8E2720546F0080B9B4 /* http_header.cpp */,
- );
- path = http;
- sourceTree = "";
- };
A144AAFE272572A30019CA5F /* stdcrt */ = {
isa = PBXGroup;
children = (
@@ -1947,9 +2077,277 @@
path = code;
sourceTree = "";
};
+ A153D5EF272EDCE80053DE0D /* uibase */ = {
+ isa = PBXGroup;
+ children = (
+ A153D649272EDD0D0053DE0D /* dllmain.cpp */,
+ A153D5F8272EDD0D0053DE0D /* interface.cpp */,
+ A153D64A272EDD0D0053DE0D /* stdafx.cpp */,
+ A153D64C272EDD0D0053DE0D /* stdafx.h */,
+ A153D5FC272EDD0D0053DE0D /* targetver.h */,
+ A153D5F9272EDD0D0053DE0D /* uibaseimpl.cpp */,
+ A153D5F7272EDD0D0053DE0D /* uibaseimpl.h */,
+ A153D64D272EDD0D0053DE0D /* uicontrolimpl.cpp */,
+ A153D5FB272EDD0D0053DE0D /* uicontrolimpl.h */,
+ A153D5F6272EDD0D0053DE0D /* uiinterface.cpp */,
+ A153D5FD272EDD0D0053DE0D /* uilib */,
+ A153D64B272EDD0D0053DE0D /* uimessageloopimpl.cpp */,
+ A153D5FA272EDD0D0053DE0D /* uimessageloopimpl.h */,
+ A153D64E272EDD0D0053DE0D /* uiwindowimpl.cpp */,
+ A153D64F272EDD0D0053DE0D /* uiwindowimpl.h */,
+ A153D5F0272EDCE80053DE0D /* uibase.h */,
+ A153D5F1272EDCE80053DE0D /* Info.plist */,
+ );
+ path = uibase;
+ sourceTree = "";
+ };
+ A153D5FD272EDD0D0053DE0D /* uilib */ = {
+ isa = PBXGroup;
+ children = (
+ A153D5FE272EDD0D0053DE0D /* core */,
+ A153D611272EDD0D0053DE0D /* layout */,
+ A153D61C272EDD0D0053DE0D /* utils */,
+ A153D627272EDD0D0053DE0D /* dpi.hpp */,
+ A153D628272EDD0D0053DE0D /* control */,
+ A153D647272EDD0D0053DE0D /* dwm.hpp */,
+ A153D648272EDD0D0053DE0D /* uilib.h */,
+ );
+ path = uilib;
+ sourceTree = "";
+ };
+ A153D5FE272EDD0D0053DE0D /* core */ = {
+ isa = PBXGroup;
+ children = (
+ A153D5FF272EDD0D0053DE0D /* uirender.cpp */,
+ A153D600272EDD0D0053DE0D /* uibase.cpp */,
+ A153D601272EDD0D0053DE0D /* pugiconfig.hpp */,
+ A153D602272EDD0D0053DE0D /* uimarkup.h */,
+ A153D603272EDD0D0053DE0D /* uicontainer.cpp */,
+ A153D604272EDD0D0053DE0D /* uibase.h */,
+ A153D605272EDD0D0053DE0D /* uicontrol.cpp */,
+ A153D606272EDD0D0053DE0D /* uidefine.h */,
+ A153D607272EDD0D0053DE0D /* pugixml.hpp */,
+ A153D608272EDD0D0053DE0D /* uicontrol.h */,
+ A153D609272EDD0D0053DE0D /* uirender.h */,
+ A153D60A272EDD0D0053DE0D /* uicontainer.h */,
+ A153D60B272EDD0D0053DE0D /* uimarkup.cpp */,
+ A153D60C272EDD0D0053DE0D /* uidlgbuilder.cpp */,
+ A153D60D272EDD0D0053DE0D /* pugixml.cpp */,
+ A153D60E272EDD0D0053DE0D /* uimanager.cpp */,
+ A153D60F272EDD0D0053DE0D /* uidlgbuilder.h */,
+ A153D610272EDD0D0053DE0D /* uimanager.h */,
+ );
+ path = core;
+ sourceTree = "";
+ };
+ A153D611272EDD0D0053DE0D /* layout */ = {
+ isa = PBXGroup;
+ children = (
+ A153D612272EDD0D0053DE0D /* uihorizontallayout.h */,
+ A153D613272EDD0D0053DE0D /* uichildlayout.cpp */,
+ A153D614272EDD0D0053DE0D /* uiverticallayout.cpp */,
+ A153D615272EDD0D0053DE0D /* uitilelayout.cpp */,
+ A153D616272EDD0D0053DE0D /* uihorizontallayout.cpp */,
+ A153D617272EDD0D0053DE0D /* uitablayout.h */,
+ A153D618272EDD0D0053DE0D /* uiverticallayout.h */,
+ A153D619272EDD0D0053DE0D /* uitilelayout.h */,
+ A153D61A272EDD0D0053DE0D /* uitablayout.cpp */,
+ A153D61B272EDD0D0053DE0D /* uichildlayout.h */,
+ );
+ path = layout;
+ sourceTree = "";
+ };
+ A153D61C272EDD0D0053DE0D /* utils */ = {
+ isa = PBXGroup;
+ children = (
+ A153D61D272EDD0D0053DE0D /* uidelegate.h */,
+ A153D61E272EDD0D0053DE0D /* utils.h */,
+ A153D61F272EDD0D0053DE0D /* utils.cpp */,
+ A153D620272EDD0D0053DE0D /* stb_image.c */,
+ A153D621272EDD0D0053DE0D /* uidelegate.cpp */,
+ A153D622272EDD0D0053DE0D /* wndshadow.cpp */,
+ A153D623272EDD0D0053DE0D /* stb_image.h */,
+ A153D624272EDD0D0053DE0D /* winimplbase.h */,
+ A153D625272EDD0D0053DE0D /* wndshadow.h */,
+ A153D626272EDD0D0053DE0D /* winimplbase.cpp */,
+ );
+ path = utils;
+ sourceTree = "";
+ };
+ A153D628272EDD0D0053DE0D /* control */ = {
+ isa = PBXGroup;
+ children = (
+ A153D629272EDD0D0053DE0D /* uiprogress.h */,
+ A153D62A272EDD0D0053DE0D /* uigifanim.h */,
+ A153D62B272EDD0D0053DE0D /* uilabel.cpp */,
+ A153D62C272EDD0D0053DE0D /* uigifanim.cpp */,
+ A153D62D272EDD0D0053DE0D /* uibutton.cpp */,
+ A153D62E272EDD0D0053DE0D /* uitreeview.cpp */,
+ A153D62F272EDD0D0053DE0D /* uilist.h */,
+ A153D630272EDD0D0053DE0D /* uicheckbox.cpp */,
+ A153D631272EDD0D0053DE0D /* uicombo.cpp */,
+ A153D632272EDD0D0053DE0D /* uitext.cpp */,
+ A153D633272EDD0D0053DE0D /* uiscrollbar.h */,
+ A153D634272EDD0D0053DE0D /* uicombo.h */,
+ A153D635272EDD0D0053DE0D /* uidatetime.h */,
+ A153D636272EDD0D0053DE0D /* uilabel.h */,
+ A153D637272EDD0D0053DE0D /* uiedit.cpp */,
+ A153D638272EDD0D0053DE0D /* uicheckbox.h */,
+ A153D639272EDD0D0053DE0D /* uidatetime.cpp */,
+ A153D63A272EDD0D0053DE0D /* uioption.cpp */,
+ A153D63B272EDD0D0053DE0D /* uiprogress.cpp */,
+ A153D63C272EDD0D0053DE0D /* uitext.h */,
+ A153D63D272EDD0D0053DE0D /* uiedit.h */,
+ A153D63E272EDD0D0053DE0D /* uitreeview.h */,
+ A153D63F272EDD0D0053DE0D /* uilist.cpp */,
+ A153D640272EDD0D0053DE0D /* uiscrollbar.cpp */,
+ A153D641272EDD0D0053DE0D /* uirichedit.h */,
+ A153D642272EDD0D0053DE0D /* uibutton.h */,
+ A153D643272EDD0D0053DE0D /* uislider.cpp */,
+ A153D644272EDD0D0053DE0D /* uioption.h */,
+ A153D645272EDD0D0053DE0D /* uirichedit.cpp */,
+ A153D646272EDD0D0053DE0D /* uislider.h */,
+ );
+ path = control;
+ 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 = (
+ A153D5EE272EDCE80053DE0D /* uibase.framework */,
A144AAFD272572A30019CA5F /* stdcrt.framework */,
A119CCF1271F22B500EF6077 /* guidgen */,
A107EBBA27173D51006A8E8E /* mainui.app */,
@@ -1957,7 +2355,6 @@
A107EA3F271733E5006A8E8E /* mainview.framework */,
A107EA1B27173383006A8E8E /* res.framework */,
A107E9E927173276006A8E8E /* access.framework */,
- A1351F77272054500080B9B4 /* http.framework */,
A107E9C5271731D3006A8E8E /* mempool.framework */,
A107E9AB27172EDF006A8E8E /* license.framework */,
A107E97327172DDD006A8E8E /* logs.framework */,
@@ -1970,6 +2367,23 @@
name = Frameworks;
sourceTree = "";
};
+ A1F6DB5F27284749002BF005 /* http_protocol */ = {
+ isa = PBXGroup;
+ children = (
+ A1F6DB6027284749002BF005 /* http_header.hpp */,
+ A1F6DB6127284749002BF005 /* httputil.h */,
+ A1F6DB6227284749002BF005 /* http_parser.h */,
+ A1F6DB6327284749002BF005 /* chttpparser.h */,
+ A1F6DB6427284749002BF005 /* http_parser.cpp */,
+ A1F6DB6527284749002BF005 /* http_content_type.hpp */,
+ A1F6DB6627284749002BF005 /* httputil.cpp */,
+ A1F6DB6727284749002BF005 /* http_content_type.cpp */,
+ A1F6DB6827284749002BF005 /* chttpparser.cpp */,
+ A1F6DB6927284749002BF005 /* http_header.cpp */,
+ );
+ path = http_protocol;
+ sourceTree = "";
+ };
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
@@ -1977,19 +2391,25 @@
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
+ A1F6DB6C27284749002BF005 /* http_header.hpp in Headers */,
A107E92F27172492006A8E8E /* udp.h in Headers */,
A107E92827172492006A8E8E /* ftp.h in Headers */,
A107E92527172492006A8E8E /* tcp.h in Headers */,
+ A1F6DB6A27284749002BF005 /* httptimpl.h in Headers */,
A107E93027172492006A8E8E /* dnsimpl.h in Headers */,
A107E92127172492006A8E8E /* stdafx.h in Headers */,
A107E91C27172492006A8E8E /* websocketimpl.h in Headers */,
A107E92627172492006A8E8E /* smtp.h in Headers */,
+ A1F6DB6F27284749002BF005 /* chttpparser.h in Headers */,
A107E92427172492006A8E8E /* netimpl.h in Headers */,
A107E92727172492006A8E8E /* icmp.h in Headers */,
A107E8FC27172470006A8E8E /* net.h in Headers */,
A107E92C27172492006A8E8E /* dns.h in Headers */,
A107E92D27172492006A8E8E /* ip.h in Headers */,
+ A1F6DB7127284749002BF005 /* http_content_type.hpp in Headers */,
+ A1F6DB6D27284749002BF005 /* httputil.h in Headers */,
A107E92027172492006A8E8E /* targetver.h in Headers */,
+ A1F6DB6E27284749002BF005 /* http_parser.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2132,28 +2552,63 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
- A1351F72272054500080B9B4 /* Headers */ = {
+ A144AAF8272572A30019CA5F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- A1351FA7272054700080B9B4 /* stdafx.h in Headers */,
- A1351F9D272054700080B9B4 /* http_content_type.hpp in Headers */,
- A1351FA8272054700080B9B4 /* targetver.h in Headers */,
- A1351F7B272054500080B9B4 /* http.h in Headers */,
- A1351F9B272054700080B9B4 /* chttpparser.h in Headers */,
- A1351FA5272054700080B9B4 /* httptimpl.h in Headers */,
- A1351FA9272054700080B9B4 /* httpimpl.h in Headers */,
- A1351F98272054700080B9B4 /* http_header.hpp in Headers */,
- A1351F99272054700080B9B4 /* httputil.h in Headers */,
- A1351F9A272054700080B9B4 /* http_parser.h in Headers */,
+ A144AB01272572A30019CA5F /* stdcrt.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A144AAF8272572A30019CA5F /* Headers */ = {
+ A153D5E9272EDCE80053DE0D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- A144AB01272572A30019CA5F /* stdcrt.h in Headers */,
+ A153D69D272EDD0D0053DE0D /* uilib.h in Headers */,
+ A153D669272EDD0D0053DE0D /* uihorizontallayout.h in Headers */,
+ A153D689272EDD0D0053DE0D /* uicombo.h in Headers */,
+ A153D672272EDD0D0053DE0D /* uichildlayout.h in Headers */,
+ A153D67D272EDD0D0053DE0D /* dpi.hpp in Headers */,
+ A153D688272EDD0D0053DE0D /* uiscrollbar.h in Headers */,
+ A153D673272EDD0D0053DE0D /* uidelegate.h in Headers */,
+ A153D654272EDD0D0053DE0D /* uimessageloopimpl.h in Headers */,
+ A153D6A1272EDD0D0053DE0D /* stdafx.h in Headers */,
+ A153D659272EDD0D0053DE0D /* pugiconfig.hpp in Headers */,
+ A153D661272EDD0D0053DE0D /* uirender.h in Headers */,
+ A153D674272EDD0D0053DE0D /* utils.h in Headers */,
+ A153D656272EDD0D0053DE0D /* targetver.h in Headers */,
+ A153D670272EDD0D0053DE0D /* uitilelayout.h in Headers */,
+ A153D68B272EDD0D0053DE0D /* uilabel.h in Headers */,
+ A153D69B272EDD0D0053DE0D /* uislider.h in Headers */,
+ A153D691272EDD0D0053DE0D /* uitext.h in Headers */,
+ A153D5F2272EDCE80053DE0D /* uibase.h in Headers */,
+ A153D68A272EDD0D0053DE0D /* uidatetime.h in Headers */,
+ A153D655272EDD0D0053DE0D /* uicontrolimpl.h in Headers */,
+ A153D65F272EDD0D0053DE0D /* pugixml.hpp in Headers */,
+ A153D696272EDD0D0053DE0D /* uirichedit.h in Headers */,
+ A153D65A272EDD0D0053DE0D /* uimarkup.h in Headers */,
+ A153D67E272EDD0D0053DE0D /* uiprogress.h in Headers */,
+ A153D679272EDD0D0053DE0D /* stb_image.h in Headers */,
+ A153D662272EDD0D0053DE0D /* uicontainer.h in Headers */,
+ A153D699272EDD0D0053DE0D /* uioption.h in Headers */,
+ A153D684272EDD0D0053DE0D /* uilist.h in Headers */,
+ A153D651272EDD0D0053DE0D /* uibaseimpl.h in Headers */,
+ A153D69C272EDD0D0053DE0D /* dwm.hpp in Headers */,
+ A153D67F272EDD0D0053DE0D /* uigifanim.h in Headers */,
+ A153D66E272EDD0D0053DE0D /* uitablayout.h in Headers */,
+ A153D68D272EDD0D0053DE0D /* uicheckbox.h in Headers */,
+ A153D697272EDD0D0053DE0D /* uibutton.h in Headers */,
+ A153D66F272EDD0D0053DE0D /* uiverticallayout.h in Headers */,
+ A153D65C272EDD0D0053DE0D /* uibase.h in Headers */,
+ A153D65E272EDD0D0053DE0D /* uidefine.h in Headers */,
+ A153D6A4272EDD0D0053DE0D /* uiwindowimpl.h in Headers */,
+ A153D693272EDD0D0053DE0D /* uitreeview.h in Headers */,
+ A153D67B272EDD0D0053DE0D /* wndshadow.h in Headers */,
+ A153D667272EDD0D0053DE0D /* uidlgbuilder.h in Headers */,
+ A153D668272EDD0D0053DE0D /* uimanager.h in Headers */,
+ A153D67A272EDD0D0053DE0D /* winimplbase.h in Headers */,
+ A153D692272EDD0D0053DE0D /* uiedit.h in Headers */,
+ A153D660272EDD0D0053DE0D /* uicontrol.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2363,7 +2818,6 @@
A107EBAC27173C50006A8E8E /* PBXTargetDependency */,
A107EBB027173C50006A8E8E /* PBXTargetDependency */,
A107EBB427173C50006A8E8E /* PBXTargetDependency */,
- A1351FAD272054880080B9B4 /* PBXTargetDependency */,
A144AB9B272573EE0019CA5F /* PBXTargetDependency */,
);
name = mainuiapp;
@@ -2394,7 +2848,6 @@
A107EBF527173DBA006A8E8E /* PBXTargetDependency */,
A107EBF927173DBA006A8E8E /* PBXTargetDependency */,
A107EBFD27173DBA006A8E8E /* PBXTargetDependency */,
- A1351F7D272054500080B9B4 /* PBXTargetDependency */,
A1351FB02720548D0080B9B4 /* PBXTargetDependency */,
A144AB03272572A30019CA5F /* PBXTargetDependency */,
);
@@ -2462,26 +2915,6 @@
productReference = A119CCF1271F22B500EF6077 /* guidgen */;
productType = "com.apple.product-type.tool";
};
- A1351F76272054500080B9B4 /* http */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = A1351F82272054500080B9B4 /* Build configuration list for PBXNativeTarget "http" */;
- buildPhases = (
- A1351F72272054500080B9B4 /* Headers */,
- A1351F73272054500080B9B4 /* Sources */,
- A1351F74272054500080B9B4 /* Frameworks */,
- A1351F75272054500080B9B4 /* Resources */,
- A1351FB5272054BD0080B9B4 /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- A144ABCC2725742B0019CA5F /* PBXTargetDependency */,
- );
- name = http;
- productName = http;
- productReference = A1351F77272054500080B9B4 /* http.framework */;
- productType = "com.apple.product-type.framework";
- };
A144AAFC272572A30019CA5F /* stdcrt */ = {
isa = PBXNativeTarget;
buildConfigurationList = A144AB06272572A30019CA5F /* Build configuration list for PBXNativeTarget "stdcrt" */;
@@ -2500,6 +2933,26 @@
productReference = A144AAFD272572A30019CA5F /* stdcrt.framework */;
productType = "com.apple.product-type.framework";
};
+ A153D5ED272EDCE80053DE0D /* uibase */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = A153D5F5272EDCE80053DE0D /* Build configuration list for PBXNativeTarget "uibase" */;
+ buildPhases = (
+ A153D5E9272EDCE80053DE0D /* Headers */,
+ A153D5EA272EDCE80053DE0D /* Sources */,
+ A153D5EB272EDCE80053DE0D /* Frameworks */,
+ A153D5EC272EDCE80053DE0D /* Resources */,
+ A153D6A9272EDD5F0053DE0D /* Embed Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ A153D6A8272EDD5F0053DE0D /* PBXTargetDependency */,
+ );
+ name = uibase;
+ productName = uibase;
+ productReference = A153D5EE272EDCE80053DE0D /* uibase.framework */;
+ productType = "com.apple.product-type.framework";
+ };
/* End PBXNativeTarget section */
/* Begin PBXProject section */
@@ -2550,10 +3003,10 @@
A119CCF0271F22B500EF6077 = {
CreatedOnToolsVersion = 12.5.1;
};
- A1351F76272054500080B9B4 = {
+ A144AAFC272572A30019CA5F = {
CreatedOnToolsVersion = 12.5.1;
};
- A144AAFC272572A30019CA5F = {
+ A153D5ED272EDCE80053DE0D = {
CreatedOnToolsVersion = 12.5.1;
};
};
@@ -2585,8 +3038,8 @@
A107E9FA271732C4006A8E8E /* render */,
A107EA1A27173383006A8E8E /* res */,
A107EA3E271733E5006A8E8E /* mainview */,
- A1351F76272054500080B9B4 /* http */,
A144AAFC272572A30019CA5F /* stdcrt */,
+ A153D5ED272EDCE80053DE0D /* uibase */,
);
};
/* End PBXProject section */
@@ -2689,14 +3142,14 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
- A1351F75272054500080B9B4 /* Resources */ = {
+ A144AAFB272572A30019CA5F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A144AAFB272572A30019CA5F /* Resources */ = {
+ A153D5EC272EDCE80053DE0D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2710,16 +3163,22 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ A1F6DB6B27284749002BF005 /* httptimpl.cpp in Sources */,
A107E92A27172492006A8E8E /* icmp.c in Sources */,
A107E92927172492006A8E8E /* smtp.c in Sources */,
A107E91E27172492006A8E8E /* stdafx.cpp in Sources */,
+ A1F6DB7027284749002BF005 /* http_parser.cpp in Sources */,
+ A1F6DB7227284749002BF005 /* httputil.cpp in Sources */,
A107E92327172492006A8E8E /* websocketimpl.cpp in Sources */,
A107E92227172492006A8E8E /* dnsimpl.cpp in Sources */,
+ A1F6DB7527284749002BF005 /* http_header.cpp in Sources */,
A107E92E27172492006A8E8E /* dns.c in Sources */,
A107E91B27172492006A8E8E /* netimpl.cpp in Sources */,
A107E92B27172492006A8E8E /* ftp.c in Sources */,
+ A1F6DB7327284749002BF005 /* http_content_type.cpp in Sources */,
A107E91D27172492006A8E8E /* dllmain.cpp in Sources */,
A107E91F27172492006A8E8E /* interface.cpp in Sources */,
+ A1F6DB7427284749002BF005 /* chttpparser.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2892,23 +3351,6 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
- A1351F73272054500080B9B4 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- A1351FA1272054700080B9B4 /* http_header.cpp in Sources */,
- A1351F9C272054700080B9B4 /* http_parser.cpp in Sources */,
- A1351F9F272054700080B9B4 /* http_content_type.cpp in Sources */,
- A1351F9E272054700080B9B4 /* httputil.cpp in Sources */,
- A1351FA3272054700080B9B4 /* httptimpl.cpp in Sources */,
- A1351FA6272054700080B9B4 /* interface.cpp in Sources */,
- A1351F97272054700080B9B4 /* dllmain.cpp in Sources */,
- A1351FA2272054700080B9B4 /* stdafx.cpp in Sources */,
- A1351FA4272054700080B9B4 /* httpimpl.cpp in Sources */,
- A1351FA0272054700080B9B4 /* chttpparser.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
A144AAF9272572A30019CA5F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
@@ -2950,6 +3392,54 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
+ A153D5EA272EDCE80053DE0D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ A153D68C272EDD0D0053DE0D /* uiedit.cpp in Sources */,
+ A153D69A272EDD0D0053DE0D /* uirichedit.cpp in Sources */,
+ A153D680272EDD0D0053DE0D /* uilabel.cpp in Sources */,
+ A153D665272EDD0D0053DE0D /* pugixml.cpp in Sources */,
+ A153D675272EDD0D0053DE0D /* utils.cpp in Sources */,
+ A153D650272EDD0D0053DE0D /* uiinterface.cpp in Sources */,
+ A153D681272EDD0D0053DE0D /* uigifanim.cpp in Sources */,
+ A153D68E272EDD0D0053DE0D /* uidatetime.cpp in Sources */,
+ A153D666272EDD0D0053DE0D /* uimanager.cpp in Sources */,
+ A153D671272EDD0D0053DE0D /* uitablayout.cpp in Sources */,
+ A153D698272EDD0D0053DE0D /* uislider.cpp in Sources */,
+ A153D694272EDD0D0053DE0D /* uilist.cpp in Sources */,
+ A153D652272EDD0D0053DE0D /* interface.cpp in Sources */,
+ A153D685272EDD0D0053DE0D /* uicheckbox.cpp in Sources */,
+ A153D653272EDD0D0053DE0D /* uibaseimpl.cpp in Sources */,
+ A153D663272EDD0D0053DE0D /* uimarkup.cpp in Sources */,
+ A153D657272EDD0D0053DE0D /* uirender.cpp in Sources */,
+ A153D66D272EDD0D0053DE0D /* uihorizontallayout.cpp in Sources */,
+ A153D66C272EDD0D0053DE0D /* uitilelayout.cpp in Sources */,
+ A153D65D272EDD0D0053DE0D /* uicontrol.cpp in Sources */,
+ A153D68F272EDD0D0053DE0D /* uioption.cpp in Sources */,
+ A153D690272EDD0D0053DE0D /* uiprogress.cpp in Sources */,
+ A153D6A3272EDD0D0053DE0D /* uiwindowimpl.cpp in Sources */,
+ A153D695272EDD0D0053DE0D /* uiscrollbar.cpp in Sources */,
+ A153D658272EDD0D0053DE0D /* uibase.cpp in Sources */,
+ A153D678272EDD0D0053DE0D /* wndshadow.cpp in Sources */,
+ A153D65B272EDD0D0053DE0D /* uicontainer.cpp in Sources */,
+ A153D683272EDD0D0053DE0D /* uitreeview.cpp in Sources */,
+ A153D66A272EDD0D0053DE0D /* uichildlayout.cpp in Sources */,
+ A153D677272EDD0D0053DE0D /* uidelegate.cpp in Sources */,
+ A153D686272EDD0D0053DE0D /* uicombo.cpp in Sources */,
+ A153D6A0272EDD0D0053DE0D /* uimessageloopimpl.cpp in Sources */,
+ A153D687272EDD0D0053DE0D /* uitext.cpp in Sources */,
+ A153D69F272EDD0D0053DE0D /* stdafx.cpp in Sources */,
+ A153D67C272EDD0D0053DE0D /* winimplbase.cpp in Sources */,
+ A153D69E272EDD0D0053DE0D /* dllmain.cpp in Sources */,
+ A153D6A2272EDD0D0053DE0D /* uicontrolimpl.cpp in Sources */,
+ A153D664272EDD0D0053DE0D /* uidlgbuilder.cpp in Sources */,
+ A153D66B272EDD0D0053DE0D /* uiverticallayout.cpp in Sources */,
+ A153D676272EDD0D0053DE0D /* stb_image.c in Sources */,
+ A153D682272EDD0D0053DE0D /* uibutton.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
@@ -3063,19 +3553,8 @@
target = A107EA1A27173383006A8E8E /* res */;
targetProxy = A107EBFC27173DBA006A8E8E /* PBXContainerItemProxy */;
};
- A1351F7D272054500080B9B4 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = A1351F76272054500080B9B4 /* http */;
- targetProxy = A1351F7C272054500080B9B4 /* PBXContainerItemProxy */;
- };
- A1351FAD272054880080B9B4 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = A1351F76272054500080B9B4 /* http */;
- targetProxy = A1351FAC272054880080B9B4 /* PBXContainerItemProxy */;
- };
A1351FB02720548D0080B9B4 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = A1351F76272054500080B9B4 /* http */;
targetProxy = A1351FAF2720548D0080B9B4 /* PBXContainerItemProxy */;
};
A144AB03272572A30019CA5F /* PBXTargetDependency */ = {
@@ -3148,10 +3627,10 @@
target = A144AAFC272572A30019CA5F /* stdcrt */;
targetProxy = A144ABC7272574290019CA5F /* PBXContainerItemProxy */;
};
- A144ABCC2725742B0019CA5F /* PBXTargetDependency */ = {
+ A153D6A8272EDD5F0053DE0D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = A144AAFC272572A30019CA5F /* stdcrt */;
- targetProxy = A144ABCB2725742B0019CA5F /* PBXContainerItemProxy */;
+ targetProxy = A153D6A7272EDD5F0053DE0D /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
@@ -3825,8 +4304,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,
@@ -3852,8 +4333,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,
@@ -4171,7 +4654,7 @@
};
name = Release;
};
- A1351F80272054500080B9B4 /* Debug */ = {
+ A144AB07272572A30019CA5F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -4187,20 +4670,17 @@
"DEBUG=1",
"$(inherited)",
);
- HEADER_SEARCH_PATHS = (
- extensions/include,
- crt,
- include,
- );
- INFOPLIST_FILE = http/Info.plist;
+ HEADER_SEARCH_PATHS = crt;
+ INFOPLIST_FILE = stdcrt/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
+ MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.10;
- PRODUCT_BUNDLE_IDENTIFIER = "std-com.http";
+ PRODUCT_BUNDLE_IDENTIFIER = "std-com.stdcrt";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -4208,7 +4688,7 @@
};
name = Debug;
};
- A1351F81272054500080B9B4 /* Release */ = {
+ A144AB08272572A40019CA5F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -4220,20 +4700,17 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_C_LANGUAGE_STANDARD = gnu11;
- HEADER_SEARCH_PATHS = (
- extensions/include,
- crt,
- include,
- );
- INFOPLIST_FILE = http/Info.plist;
+ HEADER_SEARCH_PATHS = crt;
+ INFOPLIST_FILE = stdcrt/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
+ MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.10;
- PRODUCT_BUNDLE_IDENTIFIER = "std-com.http";
+ PRODUCT_BUNDLE_IDENTIFIER = "std-com.stdcrt";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -4241,7 +4718,7 @@
};
name = Release;
};
- A144AB07272572A30019CA5F /* Debug */ = {
+ A153D5F3272EDCE80053DE0D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -4257,17 +4734,20 @@
"DEBUG=1",
"$(inherited)",
);
- HEADER_SEARCH_PATHS = crt;
- INFOPLIST_FILE = stdcrt/Info.plist;
+ HEADER_SEARCH_PATHS = (
+ extensions/include,
+ crt,
+ include,
+ );
+ INFOPLIST_FILE = uibase/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
- MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.10;
- PRODUCT_BUNDLE_IDENTIFIER = "std-com.stdcrt";
+ PRODUCT_BUNDLE_IDENTIFIER = "std-com.uibase";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -4275,7 +4755,7 @@
};
name = Debug;
};
- A144AB08272572A40019CA5F /* Release */ = {
+ A153D5F4272EDCE80053DE0D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -4287,17 +4767,20 @@
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_C_LANGUAGE_STANDARD = gnu11;
- HEADER_SEARCH_PATHS = crt;
- INFOPLIST_FILE = stdcrt/Info.plist;
+ HEADER_SEARCH_PATHS = (
+ extensions/include,
+ crt,
+ include,
+ );
+ INFOPLIST_FILE = uibase/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
- MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.10;
- PRODUCT_BUNDLE_IDENTIFIER = "std-com.stdcrt";
+ PRODUCT_BUNDLE_IDENTIFIER = "std-com.uibase";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -4443,20 +4926,20 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A1351F82272054500080B9B4 /* Build configuration list for PBXNativeTarget "http" */ = {
+ A144AB06272572A30019CA5F /* Build configuration list for PBXNativeTarget "stdcrt" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- A1351F80272054500080B9B4 /* Debug */,
- A1351F81272054500080B9B4 /* Release */,
+ A144AB07272572A30019CA5F /* Debug */,
+ A144AB08272572A40019CA5F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A144AB06272572A30019CA5F /* Build configuration list for PBXNativeTarget "stdcrt" */ = {
+ A153D5F5272EDCE80053DE0D /* Build configuration list for PBXNativeTarget "uibase" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- A144AB07272572A30019CA5F /* Debug */,
- A144AB08272572A40019CA5F /* Release */,
+ A153D5F3272EDCE80053DE0D /* Debug */,
+ A153D5F4272EDCE80053DE0D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
diff --git a/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/IDEFindNavigatorScopes.plist b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/IDEFindNavigatorScopes.plist
new file mode 100644
index 0000000000000000000000000000000000000000..5dd5da85fdbd81ad600c193382e3305209b9e392
--- /dev/null
+++ b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/IDEFindNavigatorScopes.plist
@@ -0,0 +1,5 @@
+
+
+
+
+
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 89117e6d11745dffbcafce04bd902f257746a634..c7131280dd18b121d1cd910718ddaad8182bb763 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 88b81893772d60f59070bb5d1b8f0ef3cda1455d..b208f040c7d41efa6e6a6d303ad05adc915d2128 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
- 14
+ 6
asynio.xcscheme_^#shared#^_
@@ -22,22 +22,17 @@
guidgen.xcscheme_^#shared#^_
orderHint
- 9
-
- http.xcscheme_^#shared#^_
-
- orderHint
- 7
+ 8
license.xcscheme_^#shared#^_
orderHint
- 12
+ 13
logs.xcscheme_^#shared#^_
orderHint
- 15
+ 9
mainui.xcscheme_^#shared#^_
@@ -52,12 +47,12 @@
mainview.xcscheme_^#shared#^_
orderHint
- 6
+ 10
mempool.xcscheme_^#shared#^_
orderHint
- 13
+ 11
msgbus.xcscheme_^#shared#^_
@@ -67,17 +62,17 @@
net.xcscheme_^#shared#^_
orderHint
- 11
+ 7
render.xcscheme_^#shared#^_
orderHint
- 8
+ 15
res.xcscheme_^#shared#^_
orderHint
- 10
+ 14
std_com.xcscheme_^#shared#^_
@@ -89,6 +84,11 @@
orderHint
5
+ uibase.xcscheme_^#shared#^_
+
+ orderHint
+ 12
+
SuppressBuildableAutocreation
diff --git a/http/CMakeLists.txt b/http/CMakeLists.txt
deleted file mode 100644
index 4dda673376f58f2314ddaa0d6e405fb77641850f..0000000000000000000000000000000000000000
--- a/http/CMakeLists.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-cmake_minimum_required(VERSION 2.8)
-
-file(GLOB http_src "*.cpp")
-
-file(GLOB http_protocol_src "http/*.cpp")
-
-if (${UNIX_OS})
- include_directories(
- ${PROJECT_SOURCE_DIR}/include
- ${PROJECT_SOURCE_DIR}/crt
- ${PROJECT_SOURCE_DIR}/extensions/include
- ${by3rd_library_include}
- /usr/local/include
- /opt/local/include
- /usr/include
- )
-elseif (${WIN_OS})
-
-else()
-
-endif()
-
-
-add_library(http SHARED ${http_src} ${http_protocol_src})
-
-set_target_properties(http PROPERTIES OUTPUT_NAME "http")
-set_target_properties(http PROPERTIES COMPILE_FLAGS ${dynamic})
-set_target_properties(http PROPERTIES COMPILE_FLAGS ${compile})
-
-target_link_libraries(http stdcrt)
diff --git a/http/Info.plist b/http/Info.plist
deleted file mode 100644
index 9bcb244429ec1db0606ce6b3d95962276a7c2377..0000000000000000000000000000000000000000
--- a/http/Info.plist
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- $(DEVELOPMENT_LANGUAGE)
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- $(PRODUCT_BUNDLE_PACKAGE_TYPE)
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
-
-
diff --git a/http/ReadMe.txt b/http/ReadMe.txt
deleted file mode 100644
index 902220d6f01da3309339d7ae9c955f9b811fc051..0000000000000000000000000000000000000000
--- a/http/ReadMe.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-========================================================================
- DYNAMIC LINK LIBRARY : Plugin Project Overview
-========================================================================
-
-AppWizard has created this Plugin DLL for you.
-
-This file contains a summary of what you will find in each of the files that
-make up your Plugin application.
-
-
-Plugin.vcproj
- This is the main project file for VC++ projects generated using an Application Wizard.
- It contains information about the version of Visual C++ that generated the file, and
- information about the platforms, configurations, and project features selected with the
- Application Wizard.
-
-Plugin.cpp
- This is the main DLL source file.
-
- When created, this DLL does not export any symbols. As a result, it
- will not produce a .lib file when it is built. If you wish this project
- to be a project dependency of some other project, you will either need to
- add code to export some symbols from the DLL so that an export library
- will be produced, or you can set the Ignore Input Library property to Yes
- on the General propert page of the Linker folder in the project's Property
- Pages dialog box.
-
-/////////////////////////////////////////////////////////////////////////////
-Other standard files:
-
-StdAfx.h, StdAfx.cpp
- These files are used to build a precompiled header (PCH) file
- named Plugin.pch and a precompiled types file named StdAfx.obj.
-
-/////////////////////////////////////////////////////////////////////////////
-Other notes:
-
-AppWizard uses "TODO:" comments to indicate parts of the source code you
-should add to or customize.
-
-/////////////////////////////////////////////////////////////////////////////
diff --git a/http/dllexports.def b/http/dllexports.def
deleted file mode 100644
index 491d22bd3b573bc651985f798d61479012bfd4d7..0000000000000000000000000000000000000000
--- a/http/dllexports.def
+++ /dev/null
@@ -1,10 +0,0 @@
-EXPORTS
- DllCanUnloadNow PRIVATE
- DllGetAt PRIVATE
- DllGetCount PRIVATE
- DllProgIDFromCLSID PRIVATE
- DllGetClassObject PRIVATE
- DllRegisterServer PRIVATE
- DllUnregisterServer PRIVATE
- DllStartServer PRIVATE
- DllStopServer PRIVATE
\ No newline at end of file
diff --git a/http/dllmain.cpp b/http/dllmain.cpp
deleted file mode 100644
index bb5586de4439b888264ae10afcc92e3ce735d91e..0000000000000000000000000000000000000000
--- a/http/dllmain.cpp
+++ /dev/null
@@ -1,104 +0,0 @@
-// dllmain.cpp : Defines the entry point for the DLL application.
-#include "stdafx.h"
-#include "httpimpl.h"
-
-BOOL APIENTRY DllMain( HMODULE hModule,
- DWORD ul_reason_for_call,
- LPVOID lpReserved)
-{
- switch (ul_reason_for_call)
- {
- case DLL_PROCESS_ATTACH:
- {
-//#if (TARGET_OS == OS_WINDOWS)
-//#ifdef _DEBUG
-// _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
-//#endif
-// DisableThreadLibraryCalls((HMODULE)hModule);
-//#endif
- }
- case DLL_THREAD_ATTACH:
- case DLL_THREAD_DETACH:
- case DLL_PROCESS_DETACH:
- break;
- }
- return TRUE;
-}
-
-static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =
-{
- {CLSID_STDCOM_ClassFactory,
- &CoComFactoryCreator::GetClassObject,
- "Http.Factory.impl.V1"},
-
- {CLSID_IHttp,
- &CoComFactoryCreator::GetClassObject,
- "HttpImpl.impl.V1"}
-};
-
-static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()
-{
- return ComClassObject;
-}
-
-static_const long GetClassObjectMapSize()
-{
- return sizeof(ComClassObject) / sizeof(ComClassObject[0]);
-}
-
-std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)
-{
- size_t i = 0;
- for (i = 0; i < sizeof(ComClassObject) / sizeof(ComClassObject[0]); ++i)
- {
- if (rclsid == ComClassObject[i].clsid)
- {
- return ComClassObject[i].pfnGetClassObject(riid, ppv);
- }
- }
- return E_INVALIDARG;
-}
-_stdmethod_export(CLSID, DllGetAt)(LONG nIndex)
-{
- const STDCOM_OBJMAP_ENTRY* pMap = GetClassObjectMap();
- return pMap[nIndex + 1].clsid;
-}
-_stdmethod_export(LONG, DllGetCount)()
-{
- const long lCount = GetClassObjectMapSize();
- return (lCount > 0) ? lCount - 1 : 0;
-}
-_stdmethod_export(LPCSTR, DllProgIDFromCLSID)(REFCLSID clsid)
-{
- const STDCOM_OBJMAP_ENTRY* pMap = GetClassObjectMap();
- long i = 1;
- for (i = 1; i < GetClassObjectMapSize(); ++i)
- {
- if (clsid == pMap[i].clsid)
- {
- return pMap[i].ProgID;
- }
- }
- return "";
-}
-std_com_export DllCanUnloadNow(void)
-{
- return S_OK;
-}
-std_com_export DllRegisterServer(void)
-{
- return S_OK;
-}
-std_com_export DllUnregisterServer(void)
-{
- return S_OK;
-}
-std_com_export DllStartServer(void)
-{
- return S_OK;
-}
-std_com_export DllStopServer(void)
-{
- return S_OK;
-}
-
diff --git a/http/http.h b/http/http.h
deleted file mode 100644
index 3e252a00370c60976fee4e977253efad8a781d14..0000000000000000000000000000000000000000
--- a/http/http.h
+++ /dev/null
@@ -1,18 +0,0 @@
-//
-// http.h
-// http
-//
-// Created by com on 2021/10/20.
-//
-
-#import
-
-//! Project version number for http.
-FOUNDATION_EXPORT double httpVersionNumber;
-
-//! Project version string for http.
-FOUNDATION_EXPORT const unsigned char httpVersionString[];
-
-// In this header, you should import all the public headers of your framework using statements like #import
-
-
diff --git a/http/http.vcxproj b/http/http.vcxproj
deleted file mode 100644
index 8da1c78ae720aecf517c96b0786583f4c2cc3faf..0000000000000000000000000000000000000000
--- a/http/http.vcxproj
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
-
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}
- Plugin
- Win32Proj
- 7.0
-
-
-
- DynamicLibrary
- v141_xp
- Unicode
- true
-
-
- DynamicLibrary
- v141_xp
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>14.0.25123.0
-
-
- $(Configuration)\
- true
- MinimumRecommendedRules.ruleset
-
-
-
-
- $(Configuration)\
- false
- MinimumRecommendedRules.ruleset
-
-
-
-
-
- Disabled
- ../include;../extensions/include;../extensions/include/platform;../crt;%(AdditionalIncludeDirectories)
- WIN32;_DEBUG;_WINDOWS;_USRDLL;PROTOCOL_EXPORTS;%(PreprocessorDefinitions)
- true
- EnableFastChecks
- MultiThreadedDebugDLL
- NotUsing
- Level3
- EditAndContinue
- Cdecl
-
-
- ../$(IntDir);%(AdditionalLibraryDirectories)
- dllexports.def
- true
- Windows
- MachineX86
- stdcrt.lib;%(AdditionalDependencies)
-
-
-
-
- MaxSpeed
- true
- ../include;../extensions/include;../extensions/include/platform;../crt;%(AdditionalIncludeDirectories)
- WIN32;NDEBUG;_WINDOWS;_USRDLL;PROTOCOL_EXPORTS;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
- NotUsing
- Level3
- ProgramDatabase
- Cdecl
-
-
- ../$(IntDir);%(AdditionalLibraryDirectories)
- dllexports.def
- true
- Windows
- true
- true
- MachineX86
- UseLinkTimeCodeGeneration
- stdcrt.lib;%(AdditionalDependencies)
-
-
-
-
-
-
-
-
-
- false
-
-
- false
-
-
-
-
-
-
-
-
-
-
- Create
- Create
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/http/http.vcxproj.filters b/http/http.vcxproj.filters
deleted file mode 100644
index e007f86a8a1bb2e357032db3b07c234d426273e2..0000000000000000000000000000000000000000
--- a/http/http.vcxproj.filters
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
- http
-
-
- http
-
-
- http
-
-
- http
-
-
- http
-
-
-
-
-
-
-
-
-
- http
-
-
- http
-
-
- http
-
-
- http
-
-
- http
-
-
-
-
-
-
-
-
-
-
-
- {0d9b058f-a02f-47e5-a8bc-5346dd51c913}
-
-
-
\ No newline at end of file
diff --git a/http/httpimpl.cpp b/http/httpimpl.cpp
deleted file mode 100644
index 9fa889faf190cdd6c729ed31303ef547cea4e5fe..0000000000000000000000000000000000000000
--- a/http/httpimpl.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-#include "httpimpl.h"
-#include "httptimpl.h"
-
-CHttpImpl::CHttpImpl(void)
-{
-
-}
-CHttpImpl::~CHttpImpl(void)
-{
- logi("CHttpImpl::~CHttpImpl");
-}
-
-std_method_impl CHttpImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)
-{
- rc_assert(pRot != NULL, E_FAIL)
- return pRot->QueryInterface(IID_IComRunningObjectTable, (void**)&m_pRot);
-}
-std_method_impl CHttpImpl::Uninit()
-{
- HRESULT hr = S_OK;
-
- return hr;
-}
-std_method_impl CHttpImpl::Start(_pinstance hInstance, UINT uType)
-{
- HRESULT hr = S_OK;
-
- m_pRot->GetObject(CLSID_IAsynFrame, IID_IAsynFrame, (IBase**)&m_pIAsynFrame.m_p);
- rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL)
-
-
- m_pRot->GetObject(CLSID_IDns, IID_IDns, (IBase**)&m_pIDns.m_p);
- rc_assert(m_pIDns.m_p != INULL, E_FAIL)
-
- return hr;
-}
-std_method_impl CHttpImpl::Stop(UINT uExitCode)
-{
- HRESULT hr = S_OK;
-
- m_pIAsynFrame.dispose();
- m_pIDns.dispose();
-
- return hr;
-}
-std_method_impl CHttpImpl::CreateHttp_t(IBase **pBase)
-{
- HRESULT hr = S_OK;
-
-
- CHttptImpl* pObject = NULL;
- pObject = new CHttptImpl();
- hr = pObject->QueryInterface(IID_IHttp_t, (void**)pBase);
- rc_assert(hr == S_OK, E_FAIL)
-
- _lComPtr pIAsyncTcpSocket;
- hr = m_pIAsynFrame->CreateTcpSocket((IBase**)&pIAsyncTcpSocket.m_p);
- rc_assert(hr == S_OK, E_FAIL)
-
- _lComPtr pIOper;
- hr = m_pIAsynFrame->CreateAsynIoOperation((IBase**)&pIOper.m_p);
- rc_assert(hr == S_OK, E_FAIL)
-
- hr = pIOper->BindEvent(*pBase);
- rc_assert(hr == S_OK, E_FAIL)
-
- return pObject->BindHttp(pIAsyncTcpSocket, pIOper, m_pIDns);
-}
-std_method_impl CHttpImpl::CreateHttp_s(IBase **pBase)
-{
- HRESULT hr = S_OK;
- return hr;
-}
-
-
diff --git a/http/httpimpl.h b/http/httpimpl.h
deleted file mode 100644
index 49cb8ea77f3b9e02292b1bcfafd926a21fa473db..0000000000000000000000000000000000000000
--- a/http/httpimpl.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef _HTTPCREATORIMPL_H_
-#define _HTTPCREATORIMPL_H_
-
-#include "stdafx.h"
-
-
-class CHttpImpl : public IHttp,
- public IPlugin,
- public IPluginRun,
- public CUnknownImp
-{
-public:
- CHttpImpl(void);
- virtual ~CHttpImpl(void);
-
-
- BEGIN_STDCOM_MAP
- STDCOM_INTERFACE_ENTRY_UNKNOWN_(IHttp)
- STDCOM_INTERFACE_ENTRY(IPlugin)
- STDCOM_INTERFACE_ENTRY(IPluginRun)
- STDCOM_INTERFACE_ENTRY(IHttp)
- END_STDCOM_MAP
-
- //IPlugin
- std_method(Init)(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase);
- std_method(Uninit)();
-
- //IPluginRun
- std_method(Start)(_pinstance hInstance, UINT uType);
- std_method(Stop)(UINT uExitCode);
-
- //IHttpCreator
- std_method(CreateHttp_t)(IBase **pBase);
- std_method(CreateHttp_s)(IBase **pBase);
-
-private:
- _lComPtr m_pRot;
- _lComPtr m_pIAsynFrame;
- _lComPtr m_pIDns;
-};
-
-#endif
diff --git a/http/interface.cpp b/http/interface.cpp
deleted file mode 100644
index 69bcff30b13b1b2a452776619c1401a27c75c359..0000000000000000000000000000000000000000
--- a/http/interface.cpp
+++ /dev/null
@@ -1,209 +0,0 @@
-#include "stdafx.h"
-#include
-#include
-#include
-
-uvStdComNameSpaceBegin
-
- //iplugin.h
-
- // {33B172BE-68E7-4640-8624-11749B1E0B1A}
- _DEFINE_IID_IMPL(IID_IPlugin,
- 0x33b172be, 0x68e7, 0x4640, 0x86, 0x24, 0x11, 0x74, 0x9b, 0x1e, 0xb, 0x1a);
-
- // {B71AE479-F976-417A-9F12-46D9FAAD1E50}
- _DEFINE_IID_IMPL(IID_IPluginRun,
- 0xb71ae479, 0xf976, 0x417a, 0x9f, 0x12, 0x46, 0xd9, 0xfa, 0xad, 0x1e, 0x50);
-
- //unknown.h
-
- // {00000000-0000-0000-0000-000000000046}
- _DEFINE_IID_IMPL(IID_IBase,
- 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
-
- // {00000001-0000-0000-0000-000000000046}
- _DEFINE_IID_IMPL(IID_IComClassFactory,
- 0x00000001, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
-
- // {00000000-0000-0000-0000-000000000000}
- _DEFINE_GUID_IMPL(COMPONENT_NULL,
- 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
-
- //icombase.h
-
- // {E670ECA1-E73C-4EE7-92D6-42C597254A38}
- _DEFINE_IID_IMPL(IID_ICompoentLoader,
- 0xe670eca1, 0xe73c, 0x4ee7, 0x92, 0xd6, 0x42, 0xc5, 0x97, 0x25, 0x4a, 0x38);
-
- // {619CDF0D-DEA4-4A4E-8774-D2D51BE0B208}
- _DEFINE_IID_IMPL(IID_ILibManager,
- 0x619cdf0d, 0xdea4, 0x4a4e, 0x87, 0x74, 0xd2, 0xd5, 0x1b, 0xe0, 0xb2, 0x8);
-
- // {6D9D2CF3-276A-426e-9041-FB5428DE44B1}
- _DEFINE_GUID_IMPL(CLSID_CObjectLoader,
- 0x6d9d2cf3, 0x276a, 0x426e, 0x90, 0x41, 0xfb, 0x54, 0x28, 0xde, 0x44, 0xb1);
-
- // {08F56552-D015-4C3B-B984-2211A4F880FF}
- _DEFINE_IID_IMPL(IID_IComRunningObjectTable,
- 0x8f56552, 0xd015, 0x4c3b, 0xb9, 0x84, 0x22, 0x11, 0xa4, 0xf8, 0x80, 0xff);
-
- // {4EBB368E-462C-4FF9-BEA4-71D843E8AB1B}
- _DEFINE_IID_IMPL(IID_IComRotMessage,
- 0x4ebb368e, 0x462c, 0x4ff9, 0xbe, 0xa4, 0x71, 0xd8, 0x43, 0xe8, 0xab, 0x1b);
-
- // {513F39CB-04C7-4068-82DA-FAFE689D5EE4}
- _DEFINE_GUID_IMPL(ClSID_CComRunningObjectTable,
- 0x513f39cb, 0x4c7, 0x4068, 0x82, 0xda, 0xfa, 0xfe, 0x68, 0x9d, 0x5e, 0xe4);
-
- // {70B0D10B-463F-496A-90A5-F22175F77A1D}
- _DEFINE_IID_IMPL(IID_IExit,
- 0x70b0d10b, 0x463f, 0x496a, 0x90, 0xa5, 0xf2, 0x21, 0x75, 0xf7, 0x7a, 0x1d);
-
- // {321B84B2-ACE3-4EC4-9E0C-A63870839F07}
- _DEFINE_IID_IMPL(IID_IObjectRun,
- 0x321b84b2, 0xace3, 0x4ec4, 0x9e, 0xc, 0xa6, 0x38, 0x70, 0x83, 0x9f, 0x7);
-
- // {7DADD097-97B4-45ec-A04C-135604FB6934}
- _DEFINE_GUID_IMPL(CLSID_CObjectRun,
- 0x7dadd097, 0x97b4, 0x45ec, 0xa0, 0x4c, 0x13, 0x56, 0x4, 0xfb, 0x69, 0x34);
-
- //ibase.h
-
- // {357C10F2-8A68-4138-BDE5-8C1C3896F7D5}
- _DEFINE_IID_IMPL(IID_IComObjectFrameworkClassFactory,
- 0x357c10f2, 0x8a68, 0x4138, 0xbd, 0xe5, 0x8c, 0x1c, 0x38, 0x96, 0xf7, 0xd5);
-
- // {E2247B54-E329-4ca8-8361-6499FDFF98F4}
- _DEFINE_GUID_IMPL(CLSID_ComObjectFrameworkClassFactory,
- 0xe2247b54, 0xe329, 0x4ca8, 0x83, 0x61, 0x64, 0x99, 0xfd, 0xff, 0x98, 0xf4);
-
- // {E9678781-A3CB-46fb-9121-3ED22C24CFAD}
- _DEFINE_GUID_IMPL(CLSID_STDCOM_ClassFactory,
- 0xe9678781, 0xa3cb, 0x46fb, 0x91, 0x21, 0x3e, 0xd2, 0x2c, 0x24, 0xcf, 0xad);
-
- //imsg.h
-
- // {187EA2E8-A0F2-4DA9-9F1B-F492DCEEF8AD}
- _DEFINE_GUID_IMPL(IID_IMsg,
- 0x187ea2e8, 0xa0f2, 0x4da9, 0x9f, 0x1b, 0xf4, 0x92, 0xdc, 0xee, 0xf8, 0xad);
-
- // {8b9e3502-d509-11eb-ac28-5f6601019609}
- _DEFINE_GUID_IMPL(IID_IMsgProxy,
- 0x357c10f2, 0x8a68, 0x4138, 0xbd, 0xe5, 0x8c, 0x1c, 0x38, 0x96, 0xf7, 0xd5);
-
- // {5F8488ED-8DBA-4C96-9284-B712F846BB09}
- _DEFINE_GUID_IMPL(IID_IMsgPlugin,
- 0x5f8488ed, 0x8dba, 0x4c96, 0x92, 0x84, 0xb7, 0x12, 0xf8, 0x46, 0xbb, 0x9);
-
-uvStdComNameSpaceEnd
-
-//ioperation.h
-
-// {FEB12B33-7344-45CD-A375-2495C7BEBD88}
-_DEFINE_IID_IMPL(IID_IOperation,
- 0xfeb12b33, 0x7344, 0x45cd, 0xa3, 0x75, 0x24, 0x95, 0xc7, 0xbe, 0xbd, 0x88);
-
-// {0470327E-5ACF-40EC-BAED-FE2AAE877B4B}
-_DEFINE_IID_IMPL(IID_IOperationEvents,
- 0x470327e, 0x5acf, 0x40ec, 0xba, 0xed, 0xfe, 0x2a, 0xae, 0x87, 0x7b, 0x4b);
-
-//ifile.h
-
-// {978D055C-CF46-44C4-BE6C-E537C0E698C5}
-_DEFINE_IID_IMPL(IID_IFile,
- 0x978d055c, 0xcf46, 0x44c4, 0xbe, 0x6c, 0xe5, 0x37, 0xc0, 0xe6, 0x98, 0xc5);
-
-//isocket.h
-
-// {BB9DA617-80BE-4E04-8EB4-13CF43F1EBD1}
-_DEFINE_IID_IMPL(IID_IListen,
- 0xbb9da617, 0x80be, 0x4e04, 0x8e, 0xb4, 0x13, 0xcf, 0x43, 0xf1, 0xeb, 0xd1);
-
-// {4337751F-F25B-406C-9FB9-7BA540481BB1}
-_DEFINE_IID_IMPL(IID_ISocket,
- 0x4337751f, 0xf25b, 0x406c, 0x9f, 0xb9, 0x7b, 0xa5, 0x40, 0x48, 0x1b, 0xb1);
-
-// {37ACA045-F4F5-4481-93F9-B260EA1A1305}
-_DEFINE_IID_IMPL(IID_ITcpSocket,
- 0x37aca045, 0xf4f5, 0x4481, 0x93, 0xf9, 0xb2, 0x60, 0xea, 0x1a, 0x13, 0x5);
-
-// {7DB4FEA2-E7E2-4C1D-A5D6-751CA0CA07EA}
-_DEFINE_IID_IMPL(IID_IUdpSocket,
- 0x7db4fea2, 0xe7e2, 0x4c1d, 0xa5, 0xd6, 0x75, 0x1c, 0xa0, 0xca, 0x7, 0xea);
-
-// {829C3A23-4D1C-420A-BFAD-646A1924AA15}
-_DEFINE_IID_IMPL(IID_ITcpListen,
- 0x829c3a23, 0x4d1c, 0x420a, 0xbf, 0xad, 0x64, 0x6a, 0x19, 0x24, 0xaa, 0x15);
-
-//iframe.h
-// {AFC59E7B-C3B1-4909-A0AA-795C6FB56347}
-_DEFINE_IID_IMPL(IID_IAsynFrame,
- 0xafc59e7b, 0xc3b1, 0x4909, 0xa0, 0xaa, 0x79, 0x5c, 0x6f, 0xb5, 0x63, 0x47);
-
-// {F170A724-AACA-4603-BB1C-0A8EAF1C3322}
-_DEFINE_GUID_IMPL(CLSID_IAsynFrame,
- 0xf170a724, 0xaaca, 0x4603, 0xbb, 0x1c, 0xa, 0x8e, 0xaf, 0x1c, 0x33, 0x22);
-
-//itimer.h
-// {B5819C73-6EF7-4F25-B053-F6F6D4DCBE00}
-_DEFINE_IID_IMPL(IID_ITimerEvents,
- 0xb5819c73, 0x6ef7, 0x4f25, 0xb0, 0x53, 0xf6, 0xf6, 0xd4, 0xdc, 0xbe, 0x0);
-
-// {F36A3734-C9CA-46C9-8F03-AD02AD24058F}
-_DEFINE_IID_IMPL(IID_ITimer,
- 0xf36a3734, 0xc9ca, 0x46c9, 0x8f, 0x3, 0xad, 0x2, 0xad, 0x24, 0x5, 0x8f);
-
-//ihttp.h
-
-// {8C102441-E383-4B3C-8CC8-7C8E0B0162FE}
-_DEFINE_IID_IMPL(IID_IHttpNotify,
- 0x8c102441, 0xe383, 0x4b3c, 0x8c, 0xc8, 0x7c, 0x8e, 0xb, 0x1, 0x62, 0xfe);
-
-// {6014F5E1-05A9-476F-898C-8606756A750F}
-_DEFINE_IID_IMPL(IID_IHttp_t,
- 0x6014f5e1, 0x5a9, 0x476f, 0x89, 0x8c, 0x86, 0x6, 0x75, 0x6a, 0x75, 0xf);
-
-// {75BD9CAF-2D0D-4408-B481-655F30F8613F}
-_DEFINE_IID_IMPL(IID_IHttp_s,
- 0x75bd9caf, 0x2d0d, 0x4408, 0xb4, 0x81, 0x65, 0x5f, 0x30, 0xf8, 0x61, 0x3f);
-
-// {00B3A5DF-7D0F-4629-BAB7-F91D694981F5}
-_DEFINE_IID_IMPL(IID_IHttp,
- 0xb3a5df, 0x7d0f, 0x4629, 0xba, 0xb7, 0xf9, 0x1d, 0x69, 0x49, 0x81, 0xf5);
-
-// {ED660EF7-7D0B-4CBE-8D92-D5F225434464}
-_DEFINE_GUID_IMPL(CLSID_IHttp,
- 0xed660ef7, 0x7d0b, 0x4cbe, 0x8d, 0x92, 0xd5, 0xf2, 0x25, 0x43, 0x44, 0x64);
-
-//idns.h
-
-// {92EBBD6E-BF4D-41EC-9DFB-07C9AFF0CCC0}
-_DEFINE_IID_IMPL(IID_IDnsProc,
- 0x92ebbd6e, 0xbf4d, 0x41ec, 0x9d, 0xfb, 0x7, 0xc9, 0xaf, 0xf0, 0xcc, 0xc0);
-
-// {510FD0EA-BAE2-4BC8-B650-76E8FD5ED853}
-_DEFINE_IID_IMPL(IID_IDns,
- 0x510fd0ea, 0xbae2, 0x4bc8, 0xb6, 0x50, 0x76, 0xe8, 0xfd, 0x5e, 0xd8, 0x53);
-
-// {99148517-E9AB-4F72-A2E3-012625A35E95}
-_DEFINE_GUID_IMPL(CLSID_IDns,
- 0x99148517, 0xe9ab, 0x4f72, 0xa2, 0xe3, 0x1, 0x26, 0x25, 0xa3, 0x5e, 0x95);
-
-//iwebsocket.h
-
-// {13429C36-9903-42D1-AD82-F243D48E1A76}
-_DEFINE_GUID_IMPL(CLSID_IWebSocket,
- 0x13429c36, 0x9903, 0x42d1, 0xad, 0x82, 0xf2, 0x43, 0xd4, 0x8e, 0x1a, 0x76);
-
-
-//inet.h
-
-// {7EB8185F-0F4E-4420-9991-B70671967377}
-_DEFINE_IID_IMPL(IID_INet,
- 0x7eb8185f, 0xf4e, 0x4420, 0x99, 0x91, 0xb7, 0x6, 0x71, 0x96, 0x73, 0x77);
-
-// {C54C9CC0-F448-4A49-A622-0467D02E8EB8}
-_DEFINE_GUID_IMPL(CLSID_INet,
- 0xc54c9cc0, 0xf448, 0x4a49, 0xa6, 0x22, 0x4, 0x67, 0xd0, 0x2e, 0x8e, 0xb8);
-
-
diff --git a/http/stdafx.cpp b/http/stdafx.cpp
deleted file mode 100644
index 6df3550ce81cc351d786ce90d7c996762fce08ab..0000000000000000000000000000000000000000
--- a/http/stdafx.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-// stdafx.cpp : source file that includes just the standard includes
-// Plugin.pch will be the pre-compiled header
-// stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
-
-// TODO: reference any additional headers you need in STDAFX.H
-// and not in this file
diff --git a/http/stdafx.h b/http/stdafx.h
deleted file mode 100644
index 0d06ad69f0e17dbaab19d5c45138a6bf1cd97c26..0000000000000000000000000000000000000000
--- a/http/stdafx.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// stdafx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-//
-
-#ifndef _STDAFX_H_
-#define _STDAFX_H_
-
-#include
-
-#include
-#include
-#include
-
-
-#endif
diff --git a/http/targetver.h b/http/targetver.h
deleted file mode 100644
index 203dfbcf61107432f6b42793715d96f7b06d5802..0000000000000000000000000000000000000000
--- a/http/targetver.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-// The following macros define the minimum required platform. The minimum required platform
-// is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
-// your application. The macros work by enabling all features available on platform versions up to and
-// including the version specified.
-
-// Modify the following defines if you have to target a platform prior to the ones specified below.
-// Refer to MSDN for the latest info on corresponding values for different platforms.
-#ifndef WINVER // Specifies that the minimum required platform is Windows Vista.
-#define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
-#endif
-
-#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
-#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
-#endif
-
-#ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
-#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
-#endif
-
-#ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
-#define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
-#endif
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/logs/logdatabase.cpp b/logs/logdatabase.cpp
index c3dc73ff32b7b6aabdca3128bce6e443dfdb6689..c026eccb9aa2cd4b0b1308146b30e584f9553ecd 100644
--- a/logs/logdatabase.cpp
+++ b/logs/logdatabase.cpp
@@ -140,7 +140,7 @@ std_method_impl CLogDataBaseImpl::UpdateTable(LPCSTR name,
ITableStruct *pITableStruct)
{
- logi("alert==>");
+ //logi("alert==>");
HRESULT hr = S_OK;
vector vecfield;
hr = m_db.GetTableStruct(name, vecfield);
@@ -178,7 +178,7 @@ std_method_impl CLogDataBaseImpl::UpdateTable(LPCSTR name,
}
}
- logw("table_name:%s fcount:%u ==>rcount:%u", name, vecfield.size(), uFieldCount);
+ //logw("table_name:%s fcount:%u ==>rcount:%u", name, vecfield.size(), uFieldCount);
rc_assert(AlertTable.size() > 0,S_OK)
@@ -201,7 +201,7 @@ std_method_impl CLogDataBaseImpl::UpdateTable(LPCSTR name,
strSql += FieldString;
- logi("sql=>%s", strSql.c_str());
+ //logi("sql=>%s", strSql.c_str());
ExeCommand(strSql.c_str());
}
return S_OK;
@@ -209,7 +209,7 @@ std_method_impl CLogDataBaseImpl::UpdateTable(LPCSTR name,
std_method_impl CLogDataBaseImpl::CreateTable(LPCSTR name,
ITableStruct *pITableStruct)
{
- logi("create==>");
+ //logi("create==>");
HRESULT hr = S_OK;
@@ -268,7 +268,7 @@ std_method_impl CLogDataBaseImpl::CreateTable(LPCSTR name,
strSql += ")";
- logi("sql=>%s", strSql.c_str());
+ //logi("sql=>%s", strSql.c_str());
ExeCommand(strSql.c_str());
return S_OK;
}
diff --git a/logs/logfilters.cpp b/logs/logfilters.cpp
index 2373386c0c7d426d75a2232ab3ae682addfb2be6..55fb239f7297850f5fe73d6bba178453eb8bbc62 100644
--- a/logs/logfilters.cpp
+++ b/logs/logfilters.cpp
@@ -21,8 +21,6 @@ std_method_impl CLogFiltersImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot
std_method_impl CLogFiltersImpl::Uninit()
{
-
-
return S_OK;
}
std_method_impl CLogFiltersImpl::Start(_pinstance hInstance, UINT uType)
@@ -69,10 +67,8 @@ std_method_impl CLogFiltersImpl::SendPackage(UCHAR* pBuf, ULONG Size)
std_method_impl CLogFiltersImpl::Time_Thread_Run()
{
- logi("hello,Time");
return S_OK;
}
-
std_method_impl CLogFiltersImpl::ThreadPool_Run(void* data, void* ctx)
{
diff --git a/logs/logsimpl.cpp b/logs/logsimpl.cpp
index d73bbc7a2b08ebbe152d47a83e7d83988d0a42c7..4886de04a2b193e637ba6a9d3ab641a2bfdeb1e3 100644
--- a/logs/logsimpl.cpp
+++ b/logs/logsimpl.cpp
@@ -219,7 +219,7 @@ std_method_impl CLogsImpl::SyncTable(const cJSON* JsRoot)
rc_assert(IsJsonString(pJsonTable), E_FAIL);
pTable->SetTableName(pJsonTable->valuestring);
- logi("SyncTable=>table_name=>%s", pJsonTable->valuestring);
+ //logi("SyncTable=>table_name=>%s", pJsonTable->valuestring);
//hr = m_pILogDataBase->IsTableExist(pJsonTable->valuestring);
//rc_assert_log(hr == S_OK, E_FAIL, "Fields_Table_Exist_Faild")
diff --git a/logs/tablestruct.cpp b/logs/tablestruct.cpp
index 9b6e53c3ba2083c9cb51cfb3cf33da3f4312a328..1a0853ed16d482a1c8977445e19eabdee16f0baf 100644
--- a/logs/tablestruct.cpp
+++ b/logs/tablestruct.cpp
@@ -11,8 +11,8 @@ CTableStruct::~CTableStruct()
}
std_method_impl CTableStruct::SetRecord(const FieldSturct& field)
{
- logi("name=>%s,type=>%s,size=>%u,index =>%u",
- field.name,field.type,field.size,field.index);
+ //logi("name=>%s,type=>%s,size=>%u,index =>%u",
+ // field.name,field.type,field.size,field.index);
rc_assert(field.name[0] != 0, E_FAIL)
rc_assert(field.type[0] != 0, E_FAIL)
diff --git a/mainui.sln b/mainui.sln
index 97278000fc29a61037206e847b3fb49151b98337..a5bbe63777307574456dbfa49e2cebf66dcf9234 100644
--- a/mainui.sln
+++ b/mainui.sln
@@ -9,8 +9,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "main", "main\mainui.vcxproj
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "net", "net\net.vcxproj", "{DCAA18CE-1CFA-4C47-8143-71B9BF280DFF}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "http", "http\http.vcxproj", "{1E152A99-DC53-4334-A44A-F623F5CB49C8}"
-EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "container", "container\container.vcxproj", "{49A55E66-F760-4271-804F-3A97DBDDBD3F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mempool", "mempool\mempool.vcxproj", "{4DADD130-5D03-4B60-8A45-9D6C725A6043}"
@@ -65,12 +63,6 @@ Global
{DCAA18CE-1CFA-4C47-8143-71B9BF280DFF}.Release|Win32.ActiveCfg = Release|Win32
{DCAA18CE-1CFA-4C47-8143-71B9BF280DFF}.Release|Win32.Build.0 = Release|Win32
{DCAA18CE-1CFA-4C47-8143-71B9BF280DFF}.Release|x64.ActiveCfg = Release|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Debug|Win32.ActiveCfg = Debug|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Debug|Win32.Build.0 = Debug|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Debug|x64.ActiveCfg = Debug|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Release|Win32.ActiveCfg = Release|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Release|Win32.Build.0 = Release|Win32
- {1E152A99-DC53-4334-A44A-F623F5CB49C8}.Release|x64.ActiveCfg = Release|Win32
{49A55E66-F760-4271-804F-3A97DBDDBD3F}.Debug|Win32.ActiveCfg = Debug|Win32
{49A55E66-F760-4271-804F-3A97DBDDBD3F}.Debug|Win32.Build.0 = Debug|Win32
{49A55E66-F760-4271-804F-3A97DBDDBD3F}.Debug|x64.ActiveCfg = Debug|Win32
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..27a5bba86c918843e1ae2d6db524f71554e72a7f 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,
@@ -62,6 +62,7 @@ private:
_lComPtr m_pIUiMessageLoop;
_lComPtr m_pILogs;
+ _lComPtr m_pIHttp_t;
private:
CSemHandle m_wait_sem;
};
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/msgbus/msgqueue.cpp b/msgbus/msgqueue.cpp
index 6e2c85493679102c6c6f6d0907a769e45718068f..017c9ef6c439eebd534e2792948f43ef36fe6994 100644
--- a/msgbus/msgqueue.cpp
+++ b/msgbus/msgqueue.cpp
@@ -2,12 +2,12 @@
CMsgQueue::CMsgQueue(void)
{
- _sem_init(&this->m_sem, 0);
+
}
CMsgQueue::~CMsgQueue(void)
{
- _sem_destroy(&this->m_sem);
+
}
void CMsgQueue::Push(IMsg* pMessage)
@@ -42,10 +42,10 @@ void CMsgQueue::Clear()
void CMsgQueue::PostSem()
{
- _sem_post(&this->m_sem);
+ this->m_sem.Post();
}
void CMsgQueue::WaitSem()
{
- _sem_wait(&this->m_sem);
+ this->m_sem.Wait();
}
diff --git a/msgbus/msgqueue.h b/msgbus/msgqueue.h
index 19c3a8b7f12eec0f9721c6bc8dcd0acbf3005767..7e1b9c6440b7c0930393609f8eaa8ddf6f946c59 100644
--- a/msgbus/msgqueue.h
+++ b/msgbus/msgqueue.h
@@ -18,7 +18,7 @@ public:
void WaitSem();
public:
std::queue m_Queue;
- _sem_t m_sem;
+ CSemHandle m_sem;
};
#endif
diff --git a/net/CMakeLists.txt b/net/CMakeLists.txt
index 0b9f822384fac5787faa947f79475bb7dcd9df8c..aeda65837864ab83432372bdbf2eddea4fbacb15 100644
--- a/net/CMakeLists.txt
+++ b/net/CMakeLists.txt
@@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 2.8)
file(GLOB net_src "*.cpp")
file(GLOB net_protocol_src "protocol/*.c")
+file(GLOB http_protocol_src "http_protocol/*.cpp")
if (${UNIX_OS})
include_directories(
@@ -29,7 +30,7 @@ add_definitions("-D__GCC_HAVE_ATOMIC_FETCH_ADD_4")
add_definitions("-D__GCC_HAVE_ATOMIC_LOAD_4")
-add_library(net SHARED ${net_src} ${net_protocol_src})
+add_library(net SHARED ${net_src} ${net_protocol_src} ${http_protocol_src})
set_target_properties(net PROPERTIES OUTPUT_NAME "net")
set_target_properties(net PROPERTIES COMPILE_FLAGS ${dynamic})
diff --git a/http/http/chttpparser.cpp b/net/http_protocol/chttpparser.cpp
similarity index 100%
rename from http/http/chttpparser.cpp
rename to net/http_protocol/chttpparser.cpp
diff --git a/http/http/chttpparser.h b/net/http_protocol/chttpparser.h
similarity index 100%
rename from http/http/chttpparser.h
rename to net/http_protocol/chttpparser.h
diff --git a/http/http/http_content_type.cpp b/net/http_protocol/http_content_type.cpp
similarity index 100%
rename from http/http/http_content_type.cpp
rename to net/http_protocol/http_content_type.cpp
diff --git a/http/http/http_content_type.hpp b/net/http_protocol/http_content_type.hpp
similarity index 100%
rename from http/http/http_content_type.hpp
rename to net/http_protocol/http_content_type.hpp
diff --git a/http/http/http_header.cpp b/net/http_protocol/http_header.cpp
similarity index 100%
rename from http/http/http_header.cpp
rename to net/http_protocol/http_header.cpp
diff --git a/http/http/http_header.hpp b/net/http_protocol/http_header.hpp
similarity index 100%
rename from http/http/http_header.hpp
rename to net/http_protocol/http_header.hpp
diff --git a/http/http/http_parser.cpp b/net/http_protocol/http_parser.cpp
similarity index 100%
rename from http/http/http_parser.cpp
rename to net/http_protocol/http_parser.cpp
diff --git a/http/http/http_parser.h b/net/http_protocol/http_parser.h
similarity index 100%
rename from http/http/http_parser.h
rename to net/http_protocol/http_parser.h
diff --git a/http/http/httputil.cpp b/net/http_protocol/httputil.cpp
similarity index 100%
rename from http/http/httputil.cpp
rename to net/http_protocol/httputil.cpp
diff --git a/http/http/httputil.h b/net/http_protocol/httputil.h
similarity index 100%
rename from http/http/httputil.h
rename to net/http_protocol/httputil.h
diff --git a/http/httptimpl.cpp b/net/httptimpl.cpp
similarity index 99%
rename from http/httptimpl.cpp
rename to net/httptimpl.cpp
index 66e166b89d9d8087849bd3866f66b8d8a3a8b642..64c86c892a5462da605a217c1da18bba12f1ed4d 100644
--- a/http/httptimpl.cpp
+++ b/net/httptimpl.cpp
@@ -4,7 +4,7 @@ CHttptImpl::CHttptImpl()
{
m_httpcontent_length = 0;
m_Notify = NULL;
- m_hstid = HTTP_IMPL_START;
+ m_hstid = HTTP_IMPL_START;
}
CHttptImpl::~CHttptImpl(void)
diff --git a/http/httptimpl.h b/net/httptimpl.h
similarity index 96%
rename from http/httptimpl.h
rename to net/httptimpl.h
index 41aa4e5ebcc9cbbb6d2a194eb594f89fbadb8464..7fecf839811768227f4490351c259402d6569635 100644
--- a/http/httptimpl.h
+++ b/net/httptimpl.h
@@ -2,10 +2,10 @@
#define _HTTPIMPL_H_
#include "stdafx.h"
-#include "http/chttpparser.h"
+#include "http_protocol/chttpparser.h"
-class CHttptImpl : public IHttp_t,
- public IOperationEvents,
+class CHttptImpl : public IHttp_t,
+ public IOperationEvents,
public IDnsProc,
public CUnknownImp,
public CHttpParser
diff --git a/net/interface.cpp b/net/interface.cpp
index cd4528da57e692898e17b622565c60422c2b7970..9bfa518eb1920512f5cc832fc97a326d95f2473f 100644
--- a/net/interface.cpp
+++ b/net/interface.cpp
@@ -184,3 +184,16 @@ _DEFINE_IID_IMPL(IID_INet,
_DEFINE_GUID_IMPL(CLSID_INet,
0xc54c9cc0, 0xf448, 0x4a49, 0xa6, 0x22, 0x4, 0x67, 0xd0, 0x2e, 0x8e, 0xb8);
+//ihttp.h
+
+// {8C102441-E383-4B3C-8CC8-7C8E0B0162FE}
+_DEFINE_IID_IMPL(IID_IHttpNotify,
+ 0x8c102441, 0xe383, 0x4b3c, 0x8c, 0xc8, 0x7c, 0x8e, 0xb, 0x1, 0x62, 0xfe);
+
+// {6014F5E1-05A9-476F-898C-8606756A750F}
+_DEFINE_IID_IMPL(IID_IHttp_t,
+ 0x6014f5e1, 0x5a9, 0x476f, 0x89, 0x8c, 0x86, 0x6, 0x75, 0x6a, 0x75, 0xf);
+
+// {75BD9CAF-2D0D-4408-B481-655F30F8613F}
+_DEFINE_IID_IMPL(IID_IHttp_s,
+ 0x75bd9caf, 0x2d0d, 0x4408, 0xb4, 0x81, 0x65, 0x5f, 0x30, 0xf8, 0x61, 0x3f);
diff --git a/net/net.vcxproj b/net/net.vcxproj
index ba46ccd8d279175f03f91d4758573295f0f7437c..7df4302d7bfa10e99a5c40c5d0f76f3b49ee5590 100644
--- a/net/net.vcxproj
+++ b/net/net.vcxproj
@@ -109,6 +109,12 @@
false
+
+
+
+
+
+
@@ -123,6 +129,12 @@
+
+
+
+
+
+
diff --git a/net/net.vcxproj.filters b/net/net.vcxproj.filters
index 23b27f4c53153a9386f1a4774de17652aa3e2b17..54ee07c6c38b50190c423b83eef77352a413dc99 100644
--- a/net/net.vcxproj.filters
+++ b/net/net.vcxproj.filters
@@ -6,6 +6,11 @@
+
+
+
+ protocol
+
protocol
@@ -15,9 +20,20 @@
protocol
-
-
- protocol
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
@@ -25,6 +41,8 @@
+
+
protocol
@@ -34,10 +52,10 @@
protocol
-
+
protocol
-
+
protocol
@@ -46,7 +64,21 @@
protocol
-
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
+
+
+ http_protocol
+
@@ -56,7 +88,10 @@
- {b1f7a556-e50a-4d44-a3c6-698416b56a0b}
+ {72d07f47-530e-46a0-a8ae-12d5a4f9c690}
+
+
+ {adcc6a0b-8974-47f4-b638-46c3b383b842}
\ No newline at end of file
diff --git a/net/netimpl.cpp b/net/netimpl.cpp
index ef44de806656f103fad500fe377475f22ed426ee..d50c2743a408e343ce495ad9a99aee7b6f95f68f 100644
--- a/net/netimpl.cpp
+++ b/net/netimpl.cpp
@@ -1,6 +1,7 @@
#include "netimpl.h"
#include "dnsimpl.h"
#include "websocketimpl.h"
+#include "httptimpl.h"
CNetImpl::CNetImpl(void)
{
@@ -27,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;
}
@@ -43,8 +44,8 @@ std_method_impl CNetImpl::Stop(UINT uExitCode)
}
std_method_impl CNetImpl::CreateProtocol(Net_Protocol np, IBase** pBase)
{
-
rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL)
+
HRESULT hr = S_OK;
if (np == Protocol_dns)
@@ -71,8 +72,27 @@ std_method_impl CNetImpl::CreateProtocol(Net_Protocol np, IBase** pBase)
CWebSocketImpl* pWebSocket = ALLOC_NEW CWebSocketImpl();
rc_assert(pWebSocket != NULL, E_FAIL)
}
- else {
+ else if (np == Protocol_http)
+ {
+ CHttptImpl* pObject = ALLOC_NEW CHttptImpl();
+ rc_assert(pObject != NULL, E_FAIL)
+
+ hr = pObject->QueryInterface(IID_IHttp_t, (void**)pBase);
+ rc_assert(hr == S_OK, E_FAIL)
+ _lComPtr pIAsyncTcpSocket;
+ hr = m_pIAsynFrame->CreateTcpSocket((IBase**)&pIAsyncTcpSocket.m_p);
+ rc_assert(hr == S_OK, E_FAIL)
+
+ _lComPtr pIOper;
+ hr = m_pIAsynFrame->CreateAsynIoOperation((IBase**)&pIOper.m_p);
+ rc_assert(hr == S_OK, E_FAIL)
+
+ hr = pIOper->BindEvent(*pBase);
+ rc_assert(hr == S_OK, E_FAIL)
}
+ else {
+
+ }
return S_OK;
}
diff --git a/net/stdafx.h b/net/stdafx.h
index 1986d5c6e838d11ea23f0ed35b8a54ae09cd29da..9da9f93e6eb6f8340a1db22354f527039827d7b1 100644
--- a/net/stdafx.h
+++ b/net/stdafx.h
@@ -9,5 +9,6 @@
#include
#include
#include
+#include
#endif
diff --git a/stdcrt/CMakeLists.txt b/stdcrt/CMakeLists.txt
index 520116602a352f748a7ce271ce854450f09011a7..9527545c3c5916ff16d3a6b6ffe5db6c02336ba5 100644
--- a/stdcrt/CMakeLists.txt
+++ b/stdcrt/CMakeLists.txt
@@ -1,5 +1,7 @@
cmake_minimum_required(VERSION 2.8)
+message("-- Project: stdcrt")
+
file(GLOB stdcrt_src "*.c")
file(GLOB stdcrt_code_src "code/*.c")
file(GLOB stdcrt_io_src "io/*.c")
@@ -43,10 +45,15 @@ add_library(stdcrt STATIC ${stdcrt_src}
${stdcrt_init_src})
+
set_target_properties(stdcrt PROPERTIES OUTPUT_NAME "stdcrt")
-set_target_properties(stdcrt PROPERTIES COMPILE_FLAGS ${static})
-set_target_properties(stdcrt PROPERTIES COMPILE_FLAGS ${static_compile})
+if (CMAKE_SYSTEM_NAME MATCHES "Windows")
+
+else()
+ set_target_properties(stdcrt PROPERTIES COMPILE_FLAGS ${static})
+ set_target_properties(stdcrt PROPERTIES COMPILE_FLAGS ${static_compile})
+endif()
if (CMAKE_SYSTEM_NAME MATCHES "Android")
@@ -61,7 +68,7 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
elseif (CMAKE_SYSTEM_NAME MATCHES "CYGWIN")
target_link_libraries(stdcrt pthread dl)
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
-
+
elseif (CMAKE_SYSTEM_NAME MATCHES "OHOS")
target_link_libraries(stdcrt pthread dl)
else()
diff --git a/stdcrt/string/compat_utf8.c b/stdcrt/string/compat_utf8.c
index 599dcaaa311ff25eed2d5240644f37c9ecbd27b4..055755acc1bc21fdae4847bb0f07c227edf45a0b 100644
--- a/stdcrt/string/compat_utf8.c
+++ b/stdcrt/string/compat_utf8.c
@@ -49,6 +49,7 @@
* ucs2_to_utf8 out words:sizeof(in) / 2 <= Req <= sizeof(in) * 3 / 2
*/
+
int is_utf8(const char* str, size_t length) {
size_t i;
int nBytes;
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