├── .gitignore ├── LICENSE ├── Microsoft.Cpp.Common.user.props ├── NCUI-DEV ├── NCUI-DEV.APS ├── NCUI-DEV.cpp ├── NCUI-DEV.rc ├── NCUI-DEV.rc~ ├── NCUI-DEV.vcxproj ├── NCUI-DEV.vcxproj.filters ├── ReadMe.txt ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NCUI-Library └── NCUI-Library.7z ├── NCUI.sln ├── NCUI ├── NCUI.APS ├── NCUI.cpp ├── NCUI.exe.manifest ├── NCUI.filters ├── NCUI.h ├── NCUI.ico ├── NCUI.rc ├── NCUI.rc~ ├── NCUI.vcxproj ├── NCUI.vcxproj.filters ├── ReadMe.txt ├── compatibility.manifest ├── resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── boost 编译命令.txt ├── browser_modules └── libTaskTest │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── libTaskTest.cpp │ ├── libTaskTest.h │ ├── libTaskTest.vcxproj │ ├── libTaskTest.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── transfer │ └── TaskTestTransfer.hpp ├── cef.py ├── doc.json ├── init.bat ├── init.py ├── libNCUI ├── ReadMe.txt ├── cefsimple │ ├── CMakeLists.txt │ ├── README-TRANSFER.txt │ ├── cefsimple.exe.manifest │ ├── cefsimple.rc │ ├── cefsimple.vcxproj │ ├── cefsimple.vcxproj.filters │ ├── cefsimple_win.cc │ ├── cmake_install.cmake │ ├── compatibility.manifest │ ├── res │ │ ├── cefsimple.ico │ │ └── small.ico │ ├── resource.h │ ├── simple_app.cc │ ├── simple_app.h │ ├── simple_handler.cc │ ├── simple_handler.h │ └── simple_handler_win.cc ├── compatibility.manifest ├── context │ ├── AppContext.cpp │ └── AppContext.h ├── dllmain.cpp ├── docs │ ├── AdvancedUsage.hpp │ ├── AppGen.hpp │ ├── Demos.hpp │ ├── DispatchEvent.hpp │ ├── QuickStart.hpp │ └── UseNodeJs.hpp ├── handler │ ├── BrowserManager.hpp │ ├── BrowserProcessHandler.cpp │ ├── BrowserProcessHandler.h │ ├── CefHeader.hpp │ ├── CefProcessExchanger.hpp │ ├── ClientApp.cpp │ ├── ClientApp.h │ ├── ClientHandler.cpp │ ├── ClientHandler.h │ ├── ContextMenuHandler.cpp │ ├── ContextMenuHandler.h │ ├── DialogHandler.cpp │ ├── DialogHandler.h │ ├── DisplayHandler.cpp │ ├── DisplayHandler.h │ ├── DownloadHandler.cpp │ ├── DownloadHandler.h │ ├── DragHandler.cpp │ ├── DragHandler.h │ ├── DummyClientHandler.cpp │ ├── DummyClientHandler.h │ ├── FocusHandler.cpp │ ├── FocusHandler.h │ ├── GeolocationHandler.cpp │ ├── GeolocationHandler.h │ ├── HandlerDelegate.hpp │ ├── JSDialogHandler.cpp │ ├── JSDialogHandler.h │ ├── KeyboardHandler.cpp │ ├── KeyboardHandler.h │ ├── LifeSpanHandler.cpp │ ├── LifeSpanHandler.h │ ├── LoadHandler.cpp │ ├── LoadHandler.h │ ├── MessageHandlerDelegate.hpp │ ├── MessageRouterBrowserSide.cpp │ ├── MessageRouterBrowserSide.h │ ├── RenderHandler.cpp │ ├── RenderHandler.h │ ├── RenderProcessHandler.cpp │ ├── RenderProcessHandler.h │ ├── RequestHandler.cpp │ ├── RequestHandler.h │ ├── ResourceBundleHandler.cpp │ ├── ResourceBundleHandler.h │ ├── ResourceHandler.cpp │ ├── ResourceHandler.h │ ├── RunFileDialogCallback.hpp │ ├── URLRequestClient.cpp │ ├── URLRequestClient.h │ ├── UtilityV8Handler.cpp │ ├── UtilityV8Handler.h │ ├── V8ExtentionHandler.cpp │ ├── V8ExtentionHandler.h │ └── patch │ │ └── cef_geolocation_handler.h ├── include │ ├── version.h │ ├── zconf.h │ ├── zip.h │ ├── zipconf.h │ └── zlib.h ├── ipc │ ├── Any.hpp │ ├── AsyncFunctionManager.hpp │ ├── BlobManager.hpp │ ├── IPCEmitter.hpp │ ├── IPCMessage.hpp │ ├── MessageLauncher.hpp │ ├── ProcessExchanger.hpp │ ├── RenderMessageEmitter.hpp │ ├── UIMessageBroadcaster.hpp │ └── UIMessageEmitter.hpp ├── libNCUI.aps ├── libNCUI.cpp ├── libNCUI.dll.manifest ├── libNCUI.filters ├── libNCUI.h ├── libNCUI.props ├── libNCUI.rc ├── libNCUI.vcxproj ├── libNCUI.vcxproj.filters ├── module │ ├── AppExHandler.cpp │ ├── AppExHandler.h │ ├── ConstantAttributeV8Handler.cpp │ ├── ConstantAttributeV8Handler.h │ ├── DragWindowV8Handler - 副本.cpp │ ├── DragWindowV8Handler.cpp │ ├── DragWindowV8Handler.h │ ├── EventEmitterV8Handler.cpp │ ├── EventEmitterV8Handler.h │ ├── IPCRendererV8Handler.cpp │ ├── IPCRendererV8Handler.h │ ├── JSV8Handler.cpp │ ├── JSV8Handler.h │ ├── JsClassObjectV8Handler.cpp │ ├── JsClassObjectV8Handler.h │ ├── JsClassV8Handler.cpp │ ├── JsClassV8Handler.h │ ├── basic │ │ ├── ClassMethodMgr.hpp │ │ ├── EventFunctionManager.h │ │ ├── TypeConvertor.cpp │ │ ├── TypeConvertor.h │ │ ├── V8HandlerManager.cpp │ │ └── V8HandlerManager.h │ ├── dll │ │ ├── DllManager.cpp │ │ ├── DllManager.h │ │ ├── DllRunner.cpp │ │ ├── DllRunner.h │ │ ├── DllV8Handler.cpp │ │ ├── DllV8Handler.h │ │ ├── DllValueAccessor.h │ │ ├── DllValueHandler.cpp │ │ ├── DllValueHandler.h │ │ ├── JsTypeMapHandler.cpp │ │ ├── JsTypeMapHandler.h │ │ ├── TypeMapManager.cpp │ │ └── TypeMapManager.h │ └── transfer │ │ ├── BigStringTransfer.cpp │ │ └── BigStringTransfer.h ├── node │ ├── CefCallbackHandler.cpp │ ├── CefCallbackHandler.h │ ├── NodeContextMenuHandler.cpp │ ├── NodeContextMenuHandler.h │ ├── NodeDialogHandler.cpp │ ├── NodeDialogHandler.h │ ├── NodeDisplayHandler.cpp │ ├── NodeDisplayHandler.h │ ├── NodeDownloadHandler.cpp │ ├── NodeDownloadHandler.h │ ├── NodeDragHandler.cpp │ ├── NodeDragHandler.h │ ├── NodeFocusHandler.cpp │ ├── NodeFocusHandler.h │ ├── NodeGeolocationHandler.cpp │ ├── NodeGeolocationHandler.h │ ├── NodeHandlerHelper.cpp │ ├── NodeHandlerHelper.h │ ├── NodeJSDialogHandler.cpp │ ├── NodeJSDialogHandler.h │ ├── NodeKeyboardHandler.cpp │ ├── NodeKeyboardHandler.h │ ├── NodeLifeSpanHandler.cpp │ ├── NodeLifeSpanHandler.h │ ├── NodeLoadHandler.cpp │ ├── NodeLoadHandler.h │ ├── NodeMessageHandler.cpp │ ├── NodeMessageHandler.h │ ├── NodeRenderHandler.cpp │ ├── NodeRenderHandler.h │ ├── NodeRequestHandler.cpp │ └── NodeRequestHandler.h ├── resource.h ├── scheme │ ├── DllFileHandler.cpp │ ├── DllFileHandler.h │ ├── DllFileManager.cpp │ ├── DllFileManager.h │ ├── LocalSchemeHandler.cpp │ ├── LocalSchemeHandler.h │ ├── NativeFileHandler.cpp │ ├── NativeFileHandler.h │ ├── UrlResourceHandlerFactory.cpp │ ├── UrlResourceHandlerFactory.h │ ├── ZipFileHandler.cpp │ ├── ZipFileHandler.h │ ├── ZipFileManager.h │ ├── ZipFileManger.cpp │ └── ZipFileMnager.cpp ├── settings │ ├── AppSettings.cpp │ ├── AppSettings.h │ ├── BasicSettings.cpp │ ├── BasicSettings.h │ ├── BrowserWindowSettings.cpp │ ├── BrowserWindowSettings.h │ ├── DowloaderSettings.cpp │ ├── DowloaderSettings.h │ ├── GlobalShortcutSettings.cpp │ ├── GlobalShortcutSettings.h │ ├── MenuWindowSettings.cpp │ ├── MenuWindowSettings.h │ ├── NativeWindowSettings.cpp │ ├── NativeWindowSettings.h │ ├── OverlapSettings.cpp │ ├── OverlapSettings.h │ ├── RequestSettings.cpp │ ├── RequestSettings.h │ ├── SplashWindowSettings.cpp │ ├── SplashWindowSettings.h │ └── ThemeSettings.hpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── transfer │ ├── ActionTransfer.cpp │ ├── ActionTransfer.h │ ├── AppTransfer.cpp │ ├── AppTransfer.h │ ├── BrowserHostTransfer.cpp │ ├── BrowserHostTransfer.h │ ├── BrowserTransfer.cpp │ ├── BrowserTransfer.h │ ├── BrowserTransferMgr.cpp │ ├── BrowserTransferMgr.h │ ├── BrowserWindowTransfer.cpp │ ├── BrowserWindowTransfer.h │ ├── ClassTransfer.hpp │ ├── ClipboardTransfer.cpp │ ├── ClipboardTransfer.h │ ├── CommandLineTransfer.cpp │ ├── CommandLineTransfer.h │ ├── ControlTransfer.cpp │ ├── ControlTransfer.h │ ├── DesktopTransfer.cpp │ ├── DesktopTransfer.h │ ├── DialogTransfer.cpp │ ├── DialogTransfer.h │ ├── DownloaderTransfer.cpp │ ├── DownloaderTransfer.h │ ├── EventTransfer.cpp │ ├── EventTransfer.h │ ├── FrameTransfer.cpp │ ├── FrameTransfer.h │ ├── FunctionWrapper.hpp │ ├── GlobalShortcutTransfer.cpp │ ├── GlobalShortcutTransfer.h │ ├── IPCTransfer.cpp │ ├── IPCTransfer.h │ ├── KeyboardTransfer.cpp │ ├── KeyboardTransfer.h │ ├── MenuTransfer.cpp │ ├── MenuTransfer.h │ ├── MouseTransfer.cpp │ ├── MouseTransfer.h │ ├── NativeWindowTransfer.cpp │ ├── NativeWindowTransfer.h │ ├── NetTransfer.cpp │ ├── NetTransfer.h │ ├── ProcessTransfer.cpp │ ├── ProcessTransfer.h │ ├── RendererThreadTransfer.cpp │ ├── RendererThreadTransfer.h │ ├── RendererTransferMgr.cpp │ ├── RendererTransferMgr.h │ ├── RequestTransfer.cpp │ ├── RequestTransfer.h │ ├── RunnableTransfer.hpp │ ├── ShellTransfer.cpp │ ├── ShellTransfer.h │ ├── SplashTransfer.cpp │ ├── SplashTransfer.h │ ├── SystemInfo.cpp │ ├── SystemInfo.h │ ├── SystemTransfer.cpp │ ├── SystemTransfer.h │ ├── ThreadTransfer.hpp │ ├── Transfer.hpp │ ├── TransferEventEmitter.hpp │ ├── TransferEventInfo.hpp │ ├── TransferHelper.hpp │ ├── TransferMapping.hpp │ ├── TransferMappingMgr.hpp │ ├── TransferMgr.cpp │ ├── TransferMgr.h │ ├── TrayTransfer.cpp │ ├── TrayTransfer.h │ ├── UIThreadTransfer.cpp │ ├── UIThreadTransfer.h │ ├── URLRequestClientTransfer.cpp │ ├── URLRequestClientTransfer.h │ ├── URLRequestTransfer.cpp │ └── URLRequestTransfer.h ├── ui │ └── win │ │ ├── ActionPreprocessor.cpp │ │ ├── ActionPreprocessor.h │ │ ├── Bitmap.hpp │ │ ├── BrowserWindow.cpp │ │ ├── BrowserWindow.h │ │ ├── BrowserWindowManager.cpp │ │ ├── BrowserWindowManager.h │ │ ├── BrowserWindowSkin.cpp │ │ ├── BrowserWindowSkin.h │ │ ├── BytesWriteHandler.cpp │ │ ├── BytesWriteHandler.h │ │ ├── GifEncoder.hpp │ │ ├── Imm32Manager.cpp │ │ ├── Imm32Manager.h │ │ ├── LayeredWindow.cpp │ │ ├── LayeredWindow.h │ │ ├── LocalWindow.cpp │ │ ├── LocalWindow.h │ │ ├── MessageWindow.cpp │ │ ├── MessageWindow.h │ │ ├── NativeWindow.cpp │ │ ├── NativeWindow.h │ │ ├── NativeWindowProxy.cpp │ │ ├── NativeWindowProxy.h │ │ ├── OffScreenRenderView.cpp │ │ ├── OffScreenRenderView.h │ │ ├── OffscreenDragdrop.cpp │ │ ├── OffscreenDragdrop.h │ │ ├── OffscreenDragdropEvents.h │ │ ├── PictureView.cpp │ │ ├── PictureView.h │ │ ├── RenderView.cpp │ │ ├── RenderView.h │ │ ├── ShadowWindow.cpp │ │ ├── ShadowWindow.h │ │ ├── SharedMemory.cpp │ │ ├── SharedMemory.h │ │ ├── SplashWindow.cpp │ │ ├── SplashWindow.h │ │ ├── ViewRenderer.cpp │ │ ├── ViewRenderer.h │ │ ├── WebkitView.cpp │ │ ├── WebkitView.h │ │ ├── WinUserMsg.hpp │ │ ├── clipboard │ │ ├── ClipWatcher.cpp │ │ ├── ClipWatcher.h │ │ ├── Clipboard - 副本.cpp │ │ ├── Clipboard.cpp │ │ ├── Clipboard.h │ │ ├── ClipboardMonitor.cpp │ │ └── ClipboardMonitor.h │ │ ├── menu │ │ ├── ContextMenuWindow.cpp │ │ ├── ContextMenuWindow.h │ │ ├── MenuElementUI.cpp │ │ ├── MenuElementUI.h │ │ ├── MenuUI.cpp │ │ ├── MenuUI.h │ │ ├── MenuWindow.cpp │ │ ├── MenuWindow.h │ │ └── ObserverImplBase.hpp │ │ ├── overlap │ │ ├── DefaultOverlapData.hpp │ │ ├── FilemappingOverlapData.hpp │ │ ├── Overlap.hpp │ │ ├── OverlapData.hpp │ │ └── PaintResource.hpp │ │ ├── renderer │ │ ├── D2D1Bitmap.hpp │ │ ├── D2D1Render.hpp │ │ ├── D2D1Utility.hpp │ │ ├── D2D1ViewRenderer.cpp │ │ ├── D2D1ViewRenderer.h │ │ ├── GDIPlusBitmap.hpp │ │ ├── GdiRenderer.cpp │ │ └── GdiRenderer.h │ │ ├── skin │ │ ├── 404.html │ │ ├── BrowserWindow.xml │ │ ├── MenuElement.xml │ │ ├── MenuElementMisc.xml │ │ ├── MenuWindow.xml │ │ ├── MessageBox.xml │ │ ├── NCUI.js │ │ ├── NativeWindow.xml │ │ ├── NotifyWindow.xml │ │ ├── RenderView.xml │ │ ├── SplashWindow.xml │ │ ├── build.bat │ │ ├── build.py │ │ ├── js2c.py │ │ ├── jsmin.py │ │ └── jsmin.pyc │ │ └── tray │ │ ├── NotifyWindow.cpp │ │ ├── NotifyWindow.h │ │ ├── Tray.cpp │ │ ├── Tray.h │ │ ├── TrayBase.cpp │ │ └── TrayBase.h └── utility │ ├── libzippp.cpp │ ├── libzippp.h │ └── utility.hpp ├── libResource ├── ReadMe.txt ├── dllmain.cpp ├── libResource.cpp ├── libResource.h ├── libResource.vcxproj ├── libResource.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── library ├── sqlite3.lib ├── zip.lib └── zlib.lib ├── node.py ├── node_cef_util.py ├── node_cef_util.pyc ├── node_runner ├── ReadMe.txt ├── dllmain.cpp ├── node_runner.cpp ├── node_runner.h ├── node_runner.vcxproj ├── node_runner.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── pack.py ├── plugins ├── ReadMe.txt ├── binding.cc ├── binding.gyp ├── build │ ├── binding.sln │ ├── config.gypi │ ├── ncui-dev.vcxproj │ ├── ncui-dev.vcxproj.filters │ └── node-gyp │ │ └── src │ │ └── win_delay_load_hook.cc ├── dllmain.cpp ├── example │ ├── accessors.cpp │ ├── myobject.cc │ └── myobject.h ├── handler │ ├── NodeProcessHandler.cpp │ └── NodeProcessHandler.h ├── include │ ├── v8wrap.h │ └── v8wrap │ │ ├── ClassDescription.h │ │ ├── ClassMethod.h │ │ ├── ConvertBasic.h │ │ ├── ConvertClass.h │ │ ├── ConvertFunction.h │ │ ├── ConvertFunctionStd.h │ │ ├── GarbageCollection.h │ │ └── internal │ │ ├── Assert.h │ │ ├── ClassField.h │ │ ├── ConvertFunction.h │ │ └── Util.h ├── ipc │ ├── NodeMessageEmitter.cpp │ ├── NodeMessageEmitter.hpp │ └── NodeProcessExchanger.hpp ├── module │ ├── ConstructorMgr.cpp │ ├── ConstructorMgr.h │ ├── IPCNodeV8Handler.cpp │ ├── IPCNodeV8Handler.h │ ├── NodeClassV8Handler.cpp │ ├── NodeClassV8Handler.h │ ├── NodeTypeConvertor.cpp │ ├── NodeTypeConvertor.h │ └── NodeV8Handler.h ├── nan │ ├── .dntrc │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ ├── cpplint.py │ ├── doc │ │ ├── .build.sh │ │ ├── asyncworker.md │ │ ├── buffers.md │ │ ├── callback.md │ │ ├── converters.md │ │ ├── errors.md │ │ ├── json.md │ │ ├── maybe_types.md │ │ ├── methods.md │ │ ├── new.md │ │ ├── node_misc.md │ │ ├── object_wrappers.md │ │ ├── persistent.md │ │ ├── scopes.md │ │ ├── script.md │ │ ├── string_bytes.md │ │ ├── v8_internals.md │ │ └── v8_misc.md │ ├── examples │ │ └── async_pi_estimate │ │ │ ├── README.md │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── async.cc │ │ │ ├── async.h │ │ │ ├── binding.gyp │ │ │ ├── package.json │ │ │ ├── pi_est.cc │ │ │ ├── pi_est.h │ │ │ ├── sync.cc │ │ │ └── sync.h │ ├── include_dirs.js │ ├── nan.h │ ├── nan_callbacks.h │ ├── nan_callbacks_12_inl.h │ ├── nan_callbacks_pre_12_inl.h │ ├── nan_converters.h │ ├── nan_converters_43_inl.h │ ├── nan_converters_pre_43_inl.h │ ├── nan_implementation_12_inl.h │ ├── nan_implementation_pre_12_inl.h │ ├── nan_json.h │ ├── nan_maybe_43_inl.h │ ├── nan_maybe_pre_43_inl.h │ ├── nan_new.h │ ├── nan_object_wrap.h │ ├── nan_persistent_12_inl.h │ ├── nan_persistent_pre_12_inl.h │ ├── nan_private.h │ ├── nan_string_bytes.h │ ├── nan_typedarray_contents.h │ ├── nan_weak.h │ ├── package.json │ ├── test │ │ ├── .jshintrc │ │ ├── binding.gyp │ │ ├── cpp │ │ │ ├── accessors.cpp │ │ │ ├── accessors2.cpp │ │ │ ├── asyncprogressworker.cpp │ │ │ ├── asyncprogressworkersignal.cpp │ │ │ ├── asyncprogressworkerstream.cpp │ │ │ ├── asyncworker.cpp │ │ │ ├── asyncworkererror.cpp │ │ │ ├── buffer.cpp │ │ │ ├── bufferworkerpersistent.cpp │ │ │ ├── converters.cpp │ │ │ ├── error.cpp │ │ │ ├── gc.cpp │ │ │ ├── indexedinterceptors.cpp │ │ │ ├── isolatedata.cpp │ │ │ ├── json-parse.cpp │ │ │ ├── json-stringify.cpp │ │ │ ├── makecallback.cpp │ │ │ ├── morenews.cpp │ │ │ ├── multifile1.cpp │ │ │ ├── multifile2.cpp │ │ │ ├── multifile2.h │ │ │ ├── namedinterceptors.cpp │ │ │ ├── nancallback.cpp │ │ │ ├── nannew.cpp │ │ │ ├── news.cpp │ │ │ ├── objectwraphandle.cpp │ │ │ ├── persistent.cpp │ │ │ ├── private.cpp │ │ │ ├── returnemptystring.cpp │ │ │ ├── returnnull.cpp │ │ │ ├── returnundefined.cpp │ │ │ ├── returnvalue.cpp │ │ │ ├── setcallhandler.cpp │ │ │ ├── settemplate.cpp │ │ │ ├── strings.cpp │ │ │ ├── symbols.cpp │ │ │ ├── threadlocal.cpp │ │ │ ├── trycatch.cpp │ │ │ ├── typedarrays.cpp │ │ │ ├── weak.cpp │ │ │ ├── weak2.cpp │ │ │ └── wrappedobjectfactory.cpp │ │ └── js │ │ │ ├── accessors-test.js │ │ │ ├── accessors2-test.js │ │ │ ├── asyncprogressworker-test.js │ │ │ ├── asyncprogressworkersignal-test.js │ │ │ ├── asyncprogressworkerstream-test.js │ │ │ ├── asyncworker-test.js │ │ │ ├── asyncworkererror-test.js │ │ │ ├── buffer-test.js │ │ │ ├── bufferworkerpersistent-test.js │ │ │ ├── converters-test.js │ │ │ ├── error-test.js │ │ │ ├── gc-test.js │ │ │ ├── indexedinterceptors-test.js │ │ │ ├── isolatedata-test.js │ │ │ ├── json-parse-test.js │ │ │ ├── json-stringify-test.js │ │ │ ├── makecallback-test.js │ │ │ ├── morenews-test.js │ │ │ ├── multifile-test.js │ │ │ ├── namedinterceptors-test.js │ │ │ ├── nancallback-test.js │ │ │ ├── nannew-test.js │ │ │ ├── news-test.js │ │ │ ├── objectwraphandle-test.js │ │ │ ├── persistent-test.js │ │ │ ├── private-test.js │ │ │ ├── returnemptystring-test.js │ │ │ ├── returnnull-test.js │ │ │ ├── returnundefined-test.js │ │ │ ├── returnvalue-test.js │ │ │ ├── setcallhandler-test.js │ │ │ ├── settemplate-test.js │ │ │ ├── strings-test.js │ │ │ ├── symbols-test.js │ │ │ ├── threadlocal-test.js │ │ │ ├── trycatch-test.js │ │ │ ├── typedarrays-test.js │ │ │ ├── weak-test.js │ │ │ ├── weak2-test.js │ │ │ └── wrappedobjectfactory-test.js │ └── tools │ │ ├── 1to2.js │ │ ├── README.md │ │ └── package.json ├── ncui.cpp ├── ncui.h ├── ncui.vcxproj ├── ncui.vcxproj.filters ├── node-addon-examples-master │ ├── .gitignore │ ├── 1_hello_world │ │ ├── README.md │ │ ├── nan │ │ │ ├── binding.gyp │ │ │ ├── hello.cc │ │ │ ├── hello.js │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── binding.gyp │ │ │ ├── hello.cc │ │ │ ├── hello.js │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── binding.gyp │ │ │ ├── hello.cc │ │ │ ├── hello.js │ │ │ └── package.json │ ├── 2_function_arguments │ │ ├── README.md │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ ├── 3_callbacks │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ ├── 4_object_factory │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ ├── 5_function_factory │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ └── package.json │ ├── 6_object_wrap │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ ├── 7_factory_wrap │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ ├── 8_passing_wrapped │ │ ├── nan │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ ├── node_0.10 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ │ └── node_0.12 │ │ │ ├── addon.cc │ │ │ ├── addon.js │ │ │ ├── binding.gyp │ │ │ ├── myobject.cc │ │ │ ├── myobject.h │ │ │ └── package.json │ ├── README.md │ └── original_docs_source.md ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── transfer │ └── NodeTransferMgr.hpp ├── renderer_modules ├── libExt │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── libExt.cpp │ ├── libExt.h │ ├── libExt.vcxproj │ ├── libExt.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── libsExt │ ├── ReadMe.txt │ ├── header │ ├── sqlite3.h │ └── sqlite3ext.h │ ├── libsExt.vcxproj │ ├── libsExt.vcxproj.filters │ ├── rcedit │ ├── BinResourceUpdater.cpp │ ├── BinResourceUpdater.h │ ├── RceditTransfer.cpp │ ├── RceditTransfer.h │ ├── ResourceUpdater.cpp │ └── ResourceUpdater.h │ ├── sqlite │ ├── SqlMessageEmitter.hpp │ ├── SqliteTransfer.cpp │ ├── SqliteTransfer.h │ ├── boost_src │ │ ├── sqlite3pp.cpp │ │ ├── sqlite3pp.h │ │ ├── sqlite3ppext.cpp │ │ └── sqlite3ppext.h │ ├── headeronly_src │ │ ├── sqlite3pp.h │ │ ├── sqlite3pp.ipp │ │ ├── sqlite3ppext.h │ │ └── sqlite3ppext.ipp │ ├── sqlite3.def │ ├── sqlite3.exp │ ├── sqlite3.lib │ └── src │ │ ├── sqlite3pp.cpp │ │ ├── sqlite3pp.h │ │ ├── sqlite3ppext.cpp │ │ └── sqlite3ppext.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── transfer │ ├── Base64Transfer.cpp │ ├── Base64Transfer.h │ ├── DemoTransfer.cpp │ ├── DemoTransfer.h │ ├── FileTransfer.hpp │ ├── InterProcessTransfer.cpp │ ├── InterProcessTransfer.h │ ├── MD5Transfer.cpp │ ├── MD5Transfer.h │ ├── PathTransfer.cpp │ ├── PathTransfer.h │ ├── ProcessTransfer.cpp │ ├── ProcessTransfer.h │ ├── RegistryTransfer.cpp │ ├── RegistryTransfer.h │ ├── UUIDTransfer.cpp │ └── UUIDTransfer.h ├── resources ├── 7z.dll ├── 7z.exe ├── images │ └── splash.jpg ├── main.js ├── manifest.json ├── plugins │ ├── NPSWF32_19_0_0_226.dll │ ├── manifest.json │ └── pepflashplayer.dll ├── skin │ ├── arrow.png │ ├── checkbox.png │ ├── close.png │ ├── close_p.png │ ├── huiyuan.png │ ├── logo.ico │ ├── logo1.ico │ ├── logo2.ico │ ├── max.png │ ├── max_p.png │ ├── mini.png │ ├── mini_p.png │ ├── pick.png │ ├── radio.png │ ├── restore.png │ ├── restore_p.png │ └── shadow.png ├── sqlite3.dll ├── vc2015 │ ├── api-ms-win-core-console-l1-1-0.dll │ ├── api-ms-win-core-datetime-l1-1-0.dll │ ├── api-ms-win-core-debug-l1-1-0.dll │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ ├── api-ms-win-core-file-l1-1-0.dll │ ├── api-ms-win-core-file-l1-2-0.dll │ ├── api-ms-win-core-file-l2-1-0.dll │ ├── api-ms-win-core-handle-l1-1-0.dll │ ├── api-ms-win-core-heap-l1-1-0.dll │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ ├── api-ms-win-core-localization-l1-2-0.dll │ ├── api-ms-win-core-memory-l1-1-0.dll │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ ├── api-ms-win-core-profile-l1-1-0.dll │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ ├── api-ms-win-core-string-l1-1-0.dll │ ├── api-ms-win-core-synch-l1-1-0.dll │ ├── api-ms-win-core-synch-l1-2-0.dll │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ ├── api-ms-win-core-timezone-l1-1-0.dll │ ├── api-ms-win-core-util-l1-1-0.dll │ ├── api-ms-win-crt-conio-l1-1-0.dll │ ├── api-ms-win-crt-convert-l1-1-0.dll │ ├── api-ms-win-crt-environment-l1-1-0.dll │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ ├── api-ms-win-crt-heap-l1-1-0.dll │ ├── api-ms-win-crt-locale-l1-1-0.dll │ ├── api-ms-win-crt-math-l1-1-0.dll │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ ├── api-ms-win-crt-private-l1-1-0.dll │ ├── api-ms-win-crt-process-l1-1-0.dll │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ ├── api-ms-win-crt-string-l1-1-0.dll │ ├── api-ms-win-crt-time-l1-1-0.dll │ ├── api-ms-win-crt-utility-l1-1-0.dll │ ├── msvcp140.dll │ ├── ucrtbase.dll │ └── vcruntime140.dll ├── web │ ├── .project │ ├── dist │ │ ├── css │ │ │ └── zui.css │ │ ├── fonts │ │ │ ├── zenicon.eot │ │ │ ├── zenicon.svg │ │ │ ├── zenicon.ttf │ │ │ └── zenicon.woff │ │ ├── js │ │ │ └── zui.js │ │ └── lib │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ └── prettify │ │ │ └── prettify.js │ ├── docs │ │ ├── css │ │ │ ├── common.css │ │ │ ├── doc.css │ │ │ └── flex-layout.css │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── close.png │ │ │ ├── close_p.png │ │ │ ├── max.png │ │ │ ├── max_p.png │ │ │ ├── mini.png │ │ │ ├── mini_p.png │ │ │ ├── restore.png │ │ │ └── restore_p.png │ │ ├── index.json │ │ ├── index.min.json │ │ ├── js │ │ │ ├── Popup.js │ │ │ ├── Tester.js │ │ │ ├── common.js │ │ │ ├── doc.js │ │ │ ├── lib │ │ │ │ └── vconsole │ │ │ │ │ └── vconsole.min.js │ │ │ └── vconsole.js │ │ └── part │ │ │ ├── api-apiBrowserWindow.md │ │ │ ├── api-apiDownloader.md │ │ │ ├── api-apiMenu.md │ │ │ ├── api-apiObject.md │ │ │ ├── api-apiRunnable.md │ │ │ ├── api-apiTask.md │ │ │ ├── api-apiThread.md │ │ │ ├── api-apiURLRequest.md │ │ │ ├── api-apiaction.md │ │ │ ├── api-apiapp.md │ │ │ ├── api-apiclipboard.md │ │ │ ├── api-apidesktop.md │ │ │ ├── api-apidialog.md │ │ │ ├── api-apiglobalShortcut.md │ │ │ ├── api-apiipc.md │ │ │ ├── api-apikeyboard.md │ │ │ ├── api-apimouse.md │ │ │ ├── api-apinet.md │ │ │ ├── api-apishell.md │ │ │ ├── api-apisplash.md │ │ │ ├── api-apitray.md │ │ │ ├── basic-basicAdvancedUsage.md │ │ │ ├── basic-basicAppGen.md │ │ │ ├── basic-basicDemos.md │ │ │ ├── basic-basicDispatchEvent.md │ │ │ ├── basic-basicUserNodeJs.md │ │ │ ├── basic-basic快速开始.md │ │ │ ├── cef-cefBrowser.md │ │ │ ├── cef-cefBrowserHost.md │ │ │ ├── cef-cefFrame.md │ │ │ ├── extend-extendFileStream.md │ │ │ ├── extend-extendPath.md │ │ │ ├── extend-extendProcess.md │ │ │ ├── extend-extendRegistry.md │ │ │ ├── extend-extendSqlite.md │ │ │ ├── extend-extendUUID.md │ │ │ ├── extend-extendbase64.md │ │ │ ├── extend-extendmd5.md │ │ │ ├── extend-extendrcedit.md │ │ │ ├── settings-settingsActionPreprocessor.md │ │ │ ├── settings-settingsAppSettings.md │ │ │ ├── settings-settingsBrowserWindowSettings.md │ │ │ ├── settings-settingsRequestSettings.md │ │ │ └── settings-settingsSplashWindowSettings.md │ ├── example │ │ ├── BrowserWindow.html │ │ ├── FramelessWindow.html │ │ ├── ManifestWindow.html │ │ ├── TransparentWindow.html │ │ ├── css │ │ │ └── zui-theme.css │ │ └── js │ │ │ ├── appGen.js │ │ │ ├── keyboard.js │ │ │ └── testJs.js │ ├── index.html │ └── tmpl │ │ └── chapter.tmpl ├── zip.dll └── zlib.dll ├── startup ├── ReadMe.txt ├── dllmain.cpp ├── startup - 副本.cpp ├── startup.cpp ├── startup.h ├── startup.vcxproj ├── startup.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── switch.py ├── third_party ├── DuiLib │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Control │ │ ├── UIActiveX.cpp │ │ ├── UIActiveX.h │ │ ├── UIButton.cpp │ │ ├── UIButton.h │ │ ├── UICheckBox.cpp │ │ ├── UICheckBox.h │ │ ├── UICombo.cpp │ │ ├── UICombo.h │ │ ├── UIDateTime.cpp │ │ ├── UIDateTime.h │ │ ├── UIEdit.cpp │ │ ├── UIEdit.h │ │ ├── UIFlash.cpp │ │ ├── UIFlash.h │ │ ├── UIGifAnim.cpp │ │ ├── UIGifAnim.h │ │ ├── UILabel.cpp │ │ ├── UILabel.h │ │ ├── UIList.cpp │ │ ├── UIList.h │ │ ├── UIOption.cpp │ │ ├── UIOption.h │ │ ├── UIProgress.cpp │ │ ├── UIProgress.h │ │ ├── UIRichEdit.cpp │ │ ├── UIRichEdit.h │ │ ├── UIScrollBar.cpp │ │ ├── UIScrollBar.h │ │ ├── UISlider.cpp │ │ ├── UISlider.h │ │ ├── UIText.cpp │ │ ├── UIText.h │ │ ├── UITreeView.cpp │ │ ├── UITreeView.h │ │ ├── UIWebBrowser.cpp │ │ └── UIWebBrowser.h │ ├── Core │ │ ├── UIBase.cpp │ │ ├── UIBase.h │ │ ├── UIContainer.cpp │ │ ├── UIContainer.h │ │ ├── UIControl.cpp │ │ ├── UIControl.h │ │ ├── UIDefine.h │ │ ├── UIDlgBuilder.cpp │ │ ├── UIDlgBuilder.h │ │ ├── UIManager.cpp │ │ ├── UIManager.h │ │ ├── UIMarkup.cpp │ │ ├── UIMarkup.h │ │ ├── UIRender.cpp │ │ └── UIRender.h │ ├── DuiLib.vcproj │ ├── DuiLib.vcxproj │ ├── DuiLib.vcxproj.filters │ ├── DuiLib_Static.vcxproj │ ├── Layout │ │ ├── UIChildLayout.cpp │ │ ├── UIChildLayout.h │ │ ├── UIHorizontalLayout.cpp │ │ ├── UIHorizontalLayout.h │ │ ├── UITabLayout.cpp │ │ ├── UITabLayout.h │ │ ├── UITileLayout.cpp │ │ ├── UITileLayout.h │ │ ├── UIVerticalLayout.cpp │ │ └── UIVerticalLayout.h │ ├── README.md │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── UIlib.cpp │ ├── UIlib.h │ └── Utils │ │ ├── FlashEventHandler.h │ │ ├── UIDelegate.cpp │ │ ├── UIDelegate.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── WebBrowserEventHandler.h │ │ ├── WinImplBase.cpp │ │ ├── WinImplBase.h │ │ ├── WndShadow.cpp │ │ ├── WndShadow.h │ │ ├── XUnzip.cpp │ │ ├── downloadmgr.h │ │ ├── stb_image.c │ │ └── stb_image.h ├── amo │ ├── .gitignore │ ├── Microsoft.Cpp.Common.user.props │ ├── README.md │ ├── amo.gyp │ ├── amo.gypi │ ├── amo.sln │ ├── amo.vcxproj │ ├── amo.vcxproj.filters │ ├── amo │ │ ├── File2.hpp │ │ ├── adb.hpp │ │ ├── adb1031.hpp │ │ ├── adb1032.hpp │ │ ├── adb1036.hpp │ │ ├── adb1039.hpp │ │ ├── amo.hpp │ │ ├── any.hpp │ │ ├── app.hpp │ │ ├── archive.hpp │ │ ├── array.hpp │ │ ├── ascii.hpp │ │ ├── asio.hpp │ │ ├── asio │ │ │ ├── config.hpp │ │ │ ├── http.hpp │ │ │ ├── http │ │ │ │ ├── client_http.hpp │ │ │ │ ├── client_https.hpp │ │ │ │ ├── crypto.hpp │ │ │ │ ├── server_http.hpp │ │ │ │ ├── server_https.hpp │ │ │ │ ├── status_code.hpp │ │ │ │ └── utility.hpp │ │ │ ├── st_asio_wrapper │ │ │ │ ├── base.h │ │ │ │ ├── config.h │ │ │ │ ├── container.h │ │ │ │ ├── ext │ │ │ │ │ ├── client.h │ │ │ │ │ ├── ext.h │ │ │ │ │ ├── packer.h │ │ │ │ │ ├── server.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ ├── udp.h │ │ │ │ │ └── unpacker.h │ │ │ │ ├── object.h │ │ │ │ ├── object_pool.h │ │ │ │ ├── old_class_names.h │ │ │ │ ├── service_pump.h │ │ │ │ ├── socket.h │ │ │ │ ├── socket_service.h │ │ │ │ ├── tcp │ │ │ │ │ ├── alias.h │ │ │ │ │ ├── client.h │ │ │ │ │ ├── client_socket.h │ │ │ │ │ ├── server.h │ │ │ │ │ ├── server_socket.h │ │ │ │ │ ├── socket.h │ │ │ │ │ └── ssl │ │ │ │ │ │ ├── alias.h │ │ │ │ │ │ └── ssl.h │ │ │ │ ├── timer.h │ │ │ │ └── udp │ │ │ │ │ ├── alias.h │ │ │ │ │ ├── socket.h │ │ │ │ │ └── socket_service.h │ │ │ ├── tcp.hpp │ │ │ ├── tcp │ │ │ │ ├── client.hpp │ │ │ │ ├── client_socket.hpp │ │ │ │ ├── packer.hpp │ │ │ │ ├── server.hpp │ │ │ │ ├── server_socket.hpp │ │ │ │ ├── server_socket_proxy.hpp │ │ │ │ ├── service.hpp │ │ │ │ ├── socket.hpp │ │ │ │ ├── tcp_client_impl.hpp │ │ │ │ └── unpacker.hpp │ │ │ ├── udp.hpp │ │ │ ├── udp │ │ │ │ ├── udp.hpp │ │ │ │ ├── udp_packer.hpp │ │ │ │ └── udp_unpacker.hpp │ │ │ └── utility │ │ │ │ └── unified_out.hpp │ │ ├── atomic.hpp │ │ ├── base64.hpp │ │ ├── bigstr.hpp │ │ ├── bimap.hpp │ │ ├── binary.hpp │ │ ├── bit_converter.hpp │ │ ├── blob.hpp │ │ ├── byte_buffer.hpp │ │ ├── byte_order.hpp │ │ ├── chrono.hpp │ │ ├── circular_buffer.hpp │ │ ├── codecvt.hpp │ │ ├── comment.hpp │ │ ├── config.hpp │ │ ├── daemon.hpp │ │ ├── database.hpp │ │ ├── date.hpp │ │ ├── date_time.hpp │ │ ├── delegate.hpp │ │ ├── directory.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── exchanger.hpp │ │ ├── file.hpp │ │ ├── file_mapping.hpp │ │ ├── filestream.hpp │ │ ├── filesync.hpp │ │ ├── filesystem.hpp │ │ ├── filetoc.hpp │ │ ├── filewatch.hpp │ │ ├── filewatch_t.hpp │ │ ├── foreach.hpp │ │ ├── format.hpp │ │ ├── functional.hpp │ │ ├── future.hpp │ │ ├── hash.hpp │ │ ├── impl │ │ │ ├── basic_directory.hpp │ │ │ ├── basic_file.hpp │ │ │ ├── basic_filestream.hpp │ │ │ ├── basic_json.hpp │ │ │ ├── basic_json_helper.hpp │ │ │ └── basic_path.hpp │ │ ├── ipc.hpp │ │ ├── ipc │ │ │ ├── Transfer.hpp │ │ │ ├── any.hpp │ │ │ ├── class_transfer.hpp │ │ │ ├── function_wrapper.hpp │ │ │ ├── ipc_args_pos_info.hpp │ │ │ ├── ipc_emitter.hpp │ │ │ ├── ipc_impl.hpp │ │ │ ├── ipc_transfer.hpp │ │ │ ├── message_launcher.hpp │ │ │ ├── process_exchanger.hpp │ │ │ ├── transfer_event_emitter.hpp │ │ │ ├── transfer_event_info.hpp │ │ │ ├── transfer_manager.hpp │ │ │ └── utility.hpp │ │ ├── json.hpp │ │ ├── json_helper.hpp │ │ ├── json_object.hpp │ │ ├── jsonfmt.hpp │ │ ├── launch.hpp │ │ ├── lexical_cast.hpp │ │ ├── limits.hpp │ │ ├── linux │ │ │ ├── app_linux.hpp │ │ │ ├── file_mapping_linux.hpp │ │ │ ├── process_linux.hpp │ │ │ └── shell_linux.hpp │ │ ├── loader.hpp │ │ ├── loader_lite.hpp │ │ ├── logger.hpp │ │ ├── logger │ │ │ ├── console_sinks.h │ │ │ ├── notify_sink_sinks.h │ │ │ ├── raw_daily_file_sink.h │ │ │ └── raw_file_helper.h │ │ ├── looper_executor.hpp │ │ ├── looper_executor_helper.hpp │ │ ├── looper_executor_pool.hpp │ │ ├── managed_shared_memory.hpp │ │ ├── md5.hpp │ │ ├── memory.hpp │ │ ├── mqtt.hpp │ │ ├── mqtt │ │ │ └── mqtt_client.hpp │ │ ├── mutex.hpp │ │ ├── network.hpp │ │ ├── nil.hpp │ │ ├── noncopyable.hpp │ │ ├── object.hpp │ │ ├── optional.hpp │ │ ├── path.hpp │ │ ├── pipe.hpp │ │ ├── platforms.hpp │ │ ├── process.hpp │ │ ├── program_options.hpp │ │ ├── random.hpp │ │ ├── ratio.hpp │ │ ├── rect.hpp │ │ ├── regex.hpp │ │ ├── registry.hpp │ │ ├── regular.hpp │ │ ├── safe_map.hpp │ │ ├── scheduler.hpp │ │ ├── sha1.hpp │ │ ├── shared_memory.hpp │ │ ├── shell.hpp │ │ ├── signals2.hpp │ │ ├── sigsolt.hpp │ │ ├── singleton.hpp │ │ ├── sln2gyp.hpp │ │ ├── sln2gyp │ │ │ └── vsproject.hpp │ │ ├── smart_memory_pool.hpp │ │ ├── smart_ptr.hpp │ │ ├── softeware.hpp │ │ ├── stdint.hpp │ │ ├── string.hpp │ │ ├── string │ │ │ ├── basic_string.hpp │ │ │ ├── coding_type.hpp │ │ │ ├── iconv.hpp │ │ │ ├── string_utils.hpp │ │ │ └── tiny_string.hpp │ │ ├── string_builder.hpp │ │ ├── stringify.hpp │ │ ├── system.hpp │ │ ├── system_error.hpp │ │ ├── task_timer.hpp │ │ ├── template_macro.hpp │ │ ├── test.hpp │ │ ├── text.hpp │ │ ├── thread.hpp │ │ ├── thread_pool.hpp │ │ ├── thread_safe_container.hpp │ │ ├── time.hpp │ │ ├── timer.hpp │ │ ├── tribool.hpp │ │ ├── tuple.hpp │ │ ├── type_traits.hpp │ │ ├── uid.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── utility │ │ │ └── string.hpp │ │ ├── uuid.hpp │ │ ├── variant.hpp │ │ ├── win │ │ │ ├── app_win.hpp │ │ │ ├── file_mapping_win.hpp │ │ │ ├── process_win.hpp │ │ │ └── shell_win.hpp │ │ ├── windows.hpp │ │ └── xml.hpp │ ├── build.sh │ ├── common.gyp │ ├── examples.gyp │ ├── examples.gypi │ ├── examples.vcxproj │ ├── examples.vcxproj.filters │ ├── examples │ │ ├── VS2013.Common.user.props │ │ ├── any.cpp │ │ ├── binary.cpp │ │ ├── date_time.cpp │ │ ├── delegate.cpp │ │ ├── exchanger.cpp │ │ ├── file.cpp │ │ ├── filestream.cpp │ │ ├── format.cpp │ │ ├── functional.cpp │ │ ├── json.cpp │ │ ├── launch.cpp │ │ ├── loader.cpp │ │ ├── logger.cpp │ │ ├── looper_executor.cpp │ │ ├── main.cpp │ │ ├── path.cpp │ │ ├── sigsolt.cpp │ │ ├── string.cpp │ │ ├── systeminfo.cc │ │ ├── systeminfo.h │ │ └── uid.cpp │ ├── fmt │ │ ├── CMakeLists.txt │ │ ├── format.cc │ │ ├── format.h │ │ ├── ostream.cc │ │ ├── ostream.h │ │ ├── posix.cc │ │ ├── posix.h │ │ ├── printf.h │ │ ├── string.h │ │ └── time.h │ ├── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── gyp.json │ ├── library │ │ ├── gtest.lib │ │ ├── gtest_main.lib │ │ ├── gtest_maind.lib │ │ ├── gtestd.lib │ │ ├── sqlite3.lib │ │ ├── zip.lib │ │ └── zlib.lib │ ├── nlohmann │ │ └── json.hpp │ ├── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h │ ├── spdlog │ │ ├── async_logger.h │ │ ├── common.h │ │ ├── details │ │ │ ├── async_log_helper.h │ │ │ ├── async_logger_impl.h │ │ │ ├── file_helper.h │ │ │ ├── log_msg.h │ │ │ ├── logger_impl.h │ │ │ ├── mpmc_bounded_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os.h │ │ │ ├── pattern_formatter_impl.h │ │ │ ├── registry.h │ │ │ └── spdlog_impl.h │ │ ├── fmt │ │ │ ├── bundled │ │ │ │ ├── format.cc │ │ │ │ ├── format.h │ │ │ │ ├── ostream.cc │ │ │ │ ├── ostream.h │ │ │ │ └── printf.h │ │ │ ├── fmt.h │ │ │ └── ostr.h │ │ ├── formatter.h │ │ ├── logger.h │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── file_sinks.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── sink.h │ │ │ ├── stdout_sinks.h │ │ │ └── syslog_sink.h │ │ ├── spdlog.h │ │ └── tweakme.h │ ├── test.hpp │ ├── tools │ │ ├── file2c │ │ │ ├── ReadMe.txt │ │ │ ├── common.gyp │ │ │ ├── file2c.cpp │ │ │ ├── file2c.gyp │ │ │ ├── file2c.gypi │ │ │ ├── file2c.vcxproj │ │ │ ├── file2c.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── filesync │ │ │ ├── ReadMe.txt │ │ │ ├── common.gyp │ │ │ ├── filesync.cpp │ │ │ ├── filesync.gyp │ │ │ ├── filesync.gypi │ │ │ ├── filesync.vcxproj │ │ │ ├── filesync.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── jsonfmt │ │ │ ├── ReadMe.txt │ │ │ ├── common.gyp │ │ │ ├── jsonfmt.cpp │ │ │ ├── jsonfmt.gyp │ │ │ ├── jsonfmt.gypi │ │ │ ├── jsonfmt.vcxproj │ │ │ ├── jsonfmt.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── sln2gyp │ │ │ ├── ReadMe.txt │ │ │ ├── common.gyp │ │ │ ├── sln2gyp.cpp │ │ │ ├── sln2gyp.gyp │ │ │ ├── sln2gyp.gypi │ │ │ ├── sln2gyp.vcxproj │ │ │ ├── sln2gyp.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── targetver.h │ │ │ └── tmpl │ │ │ │ ├── common_gyp.tmpl │ │ │ │ ├── config.json │ │ │ │ ├── default_gyp.hpp │ │ │ │ ├── file2c.exe │ │ │ │ ├── gypi.tmpl │ │ │ │ ├── project_gyp.tmpl │ │ │ │ └── sln_gyp.tmpl │ │ └── test │ │ │ ├── ReadMe.txt │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── targetver.h │ │ │ ├── test.cpp │ │ │ ├── test.vcxproj │ │ │ └── test.vcxproj.filters │ ├── toutf8.bat │ └── toutf8.py └── sqlite3 │ ├── sqlite3.h │ └── sqlite3ext.h ├── toutf8.bat ├── toutf8.py ├── 已知BUG.txt ├── 编译说明.txt └── 说明.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Cpp.Common.user.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/Microsoft.Cpp.Common.user.props -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.APS -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.cpp -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.rc -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.rc~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.rc~ -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.vcxproj -------------------------------------------------------------------------------- /NCUI-DEV/NCUI-DEV.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/NCUI-DEV.vcxproj.filters -------------------------------------------------------------------------------- /NCUI-DEV/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/ReadMe.txt -------------------------------------------------------------------------------- /NCUI-DEV/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/resource.h -------------------------------------------------------------------------------- /NCUI-DEV/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/stdafx.cpp -------------------------------------------------------------------------------- /NCUI-DEV/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/stdafx.h -------------------------------------------------------------------------------- /NCUI-DEV/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-DEV/targetver.h -------------------------------------------------------------------------------- /NCUI-Library/NCUI-Library.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI-Library/NCUI-Library.7z -------------------------------------------------------------------------------- /NCUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI.sln -------------------------------------------------------------------------------- /NCUI/NCUI.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.APS -------------------------------------------------------------------------------- /NCUI/NCUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.cpp -------------------------------------------------------------------------------- /NCUI/NCUI.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.exe.manifest -------------------------------------------------------------------------------- /NCUI/NCUI.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.filters -------------------------------------------------------------------------------- /NCUI/NCUI.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /NCUI/NCUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.ico -------------------------------------------------------------------------------- /NCUI/NCUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.rc -------------------------------------------------------------------------------- /NCUI/NCUI.rc~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.rc~ -------------------------------------------------------------------------------- /NCUI/NCUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.vcxproj -------------------------------------------------------------------------------- /NCUI/NCUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/NCUI.vcxproj.filters -------------------------------------------------------------------------------- /NCUI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/ReadMe.txt -------------------------------------------------------------------------------- /NCUI/compatibility.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/compatibility.manifest -------------------------------------------------------------------------------- /NCUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/resource.h -------------------------------------------------------------------------------- /NCUI/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/small.ico -------------------------------------------------------------------------------- /NCUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/stdafx.cpp -------------------------------------------------------------------------------- /NCUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/stdafx.h -------------------------------------------------------------------------------- /NCUI/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/NCUI/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/README.md -------------------------------------------------------------------------------- /boost 编译命令.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/boost 编译命令.txt -------------------------------------------------------------------------------- /browser_modules/libTaskTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/browser_modules/libTaskTest/ReadMe.txt -------------------------------------------------------------------------------- /browser_modules/libTaskTest/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/browser_modules/libTaskTest/dllmain.cpp -------------------------------------------------------------------------------- /browser_modules/libTaskTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/browser_modules/libTaskTest/stdafx.cpp -------------------------------------------------------------------------------- /browser_modules/libTaskTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/browser_modules/libTaskTest/stdafx.h -------------------------------------------------------------------------------- /browser_modules/libTaskTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/browser_modules/libTaskTest/targetver.h -------------------------------------------------------------------------------- /cef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/cef.py -------------------------------------------------------------------------------- /doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/doc.json -------------------------------------------------------------------------------- /init.bat: -------------------------------------------------------------------------------- 1 | python init.py 2 | -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/init.py -------------------------------------------------------------------------------- /libNCUI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ReadMe.txt -------------------------------------------------------------------------------- /libNCUI/cefsimple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/CMakeLists.txt -------------------------------------------------------------------------------- /libNCUI/cefsimple/README-TRANSFER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/README-TRANSFER.txt -------------------------------------------------------------------------------- /libNCUI/cefsimple/cefsimple.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/cefsimple.exe.manifest -------------------------------------------------------------------------------- /libNCUI/cefsimple/cefsimple.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/cefsimple.rc -------------------------------------------------------------------------------- /libNCUI/cefsimple/cefsimple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/cefsimple.vcxproj -------------------------------------------------------------------------------- /libNCUI/cefsimple/cefsimple_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/cefsimple_win.cc -------------------------------------------------------------------------------- /libNCUI/cefsimple/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/cmake_install.cmake -------------------------------------------------------------------------------- /libNCUI/cefsimple/compatibility.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/compatibility.manifest -------------------------------------------------------------------------------- /libNCUI/cefsimple/res/cefsimple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/res/cefsimple.ico -------------------------------------------------------------------------------- /libNCUI/cefsimple/res/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/res/small.ico -------------------------------------------------------------------------------- /libNCUI/cefsimple/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/resource.h -------------------------------------------------------------------------------- /libNCUI/cefsimple/simple_app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/simple_app.cc -------------------------------------------------------------------------------- /libNCUI/cefsimple/simple_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/simple_app.h -------------------------------------------------------------------------------- /libNCUI/cefsimple/simple_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/simple_handler.cc -------------------------------------------------------------------------------- /libNCUI/cefsimple/simple_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/simple_handler.h -------------------------------------------------------------------------------- /libNCUI/cefsimple/simple_handler_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/cefsimple/simple_handler_win.cc -------------------------------------------------------------------------------- /libNCUI/compatibility.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/compatibility.manifest -------------------------------------------------------------------------------- /libNCUI/context/AppContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/context/AppContext.cpp -------------------------------------------------------------------------------- /libNCUI/context/AppContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/context/AppContext.h -------------------------------------------------------------------------------- /libNCUI/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/dllmain.cpp -------------------------------------------------------------------------------- /libNCUI/docs/AdvancedUsage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/AdvancedUsage.hpp -------------------------------------------------------------------------------- /libNCUI/docs/AppGen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/AppGen.hpp -------------------------------------------------------------------------------- /libNCUI/docs/Demos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/Demos.hpp -------------------------------------------------------------------------------- /libNCUI/docs/DispatchEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/DispatchEvent.hpp -------------------------------------------------------------------------------- /libNCUI/docs/QuickStart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/QuickStart.hpp -------------------------------------------------------------------------------- /libNCUI/docs/UseNodeJs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/docs/UseNodeJs.hpp -------------------------------------------------------------------------------- /libNCUI/handler/BrowserManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/BrowserManager.hpp -------------------------------------------------------------------------------- /libNCUI/handler/BrowserProcessHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/BrowserProcessHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/CefHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/CefHeader.hpp -------------------------------------------------------------------------------- /libNCUI/handler/CefProcessExchanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/CefProcessExchanger.hpp -------------------------------------------------------------------------------- /libNCUI/handler/ClientApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ClientApp.cpp -------------------------------------------------------------------------------- /libNCUI/handler/ClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ClientApp.h -------------------------------------------------------------------------------- /libNCUI/handler/ClientHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ClientHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/ClientHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ClientHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/ContextMenuHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ContextMenuHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/ContextMenuHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ContextMenuHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/DialogHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DialogHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/DialogHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DialogHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/DisplayHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DisplayHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/DisplayHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DisplayHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/DownloadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DownloadHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/DownloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DownloadHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/DragHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DragHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/DragHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DragHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/DummyClientHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DummyClientHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/DummyClientHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/DummyClientHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/FocusHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/FocusHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/FocusHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/FocusHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/GeolocationHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/GeolocationHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/GeolocationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/GeolocationHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/HandlerDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/HandlerDelegate.hpp -------------------------------------------------------------------------------- /libNCUI/handler/JSDialogHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/JSDialogHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/JSDialogHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/JSDialogHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/KeyboardHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/KeyboardHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/KeyboardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/KeyboardHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/LifeSpanHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/LifeSpanHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/LifeSpanHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/LifeSpanHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/LoadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/LoadHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/LoadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/LoadHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/RenderHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RenderHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/RenderHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RenderHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/RenderProcessHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RenderProcessHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/RenderProcessHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RenderProcessHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/RequestHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RequestHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/RequestHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/ResourceBundleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ResourceBundleHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/ResourceHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ResourceHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/ResourceHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/ResourceHandler.h -------------------------------------------------------------------------------- /libNCUI/handler/URLRequestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/URLRequestClient.cpp -------------------------------------------------------------------------------- /libNCUI/handler/URLRequestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/URLRequestClient.h -------------------------------------------------------------------------------- /libNCUI/handler/UtilityV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/UtilityV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/UtilityV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/UtilityV8Handler.h -------------------------------------------------------------------------------- /libNCUI/handler/V8ExtentionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/V8ExtentionHandler.cpp -------------------------------------------------------------------------------- /libNCUI/handler/V8ExtentionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/handler/V8ExtentionHandler.h -------------------------------------------------------------------------------- /libNCUI/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/include/version.h -------------------------------------------------------------------------------- /libNCUI/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/include/zconf.h -------------------------------------------------------------------------------- /libNCUI/include/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/include/zip.h -------------------------------------------------------------------------------- /libNCUI/include/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/include/zipconf.h -------------------------------------------------------------------------------- /libNCUI/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/include/zlib.h -------------------------------------------------------------------------------- /libNCUI/ipc/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/Any.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/AsyncFunctionManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/AsyncFunctionManager.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/BlobManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/BlobManager.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/IPCEmitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/IPCEmitter.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/IPCMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/IPCMessage.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/MessageLauncher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/MessageLauncher.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/ProcessExchanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/ProcessExchanger.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/RenderMessageEmitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/RenderMessageEmitter.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/UIMessageBroadcaster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/UIMessageBroadcaster.hpp -------------------------------------------------------------------------------- /libNCUI/ipc/UIMessageEmitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ipc/UIMessageEmitter.hpp -------------------------------------------------------------------------------- /libNCUI/libNCUI.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.aps -------------------------------------------------------------------------------- /libNCUI/libNCUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.cpp -------------------------------------------------------------------------------- /libNCUI/libNCUI.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.dll.manifest -------------------------------------------------------------------------------- /libNCUI/libNCUI.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.filters -------------------------------------------------------------------------------- /libNCUI/libNCUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.h -------------------------------------------------------------------------------- /libNCUI/libNCUI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.props -------------------------------------------------------------------------------- /libNCUI/libNCUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.rc -------------------------------------------------------------------------------- /libNCUI/libNCUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.vcxproj -------------------------------------------------------------------------------- /libNCUI/libNCUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/libNCUI.vcxproj.filters -------------------------------------------------------------------------------- /libNCUI/module/AppExHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/AppExHandler.cpp -------------------------------------------------------------------------------- /libNCUI/module/AppExHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/AppExHandler.h -------------------------------------------------------------------------------- /libNCUI/module/DragWindowV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/DragWindowV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/DragWindowV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/DragWindowV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/EventEmitterV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/EventEmitterV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/EventEmitterV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/EventEmitterV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/IPCRendererV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/IPCRendererV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/IPCRendererV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/IPCRendererV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/JSV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/JSV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/JSV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/JSV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/JsClassObjectV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/JsClassObjectV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/JsClassV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/JsClassV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/JsClassV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/JsClassV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/basic/ClassMethodMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/basic/ClassMethodMgr.hpp -------------------------------------------------------------------------------- /libNCUI/module/basic/TypeConvertor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/basic/TypeConvertor.cpp -------------------------------------------------------------------------------- /libNCUI/module/basic/TypeConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/basic/TypeConvertor.h -------------------------------------------------------------------------------- /libNCUI/module/basic/V8HandlerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/basic/V8HandlerManager.h -------------------------------------------------------------------------------- /libNCUI/module/dll/DllManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllManager.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/DllManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllManager.h -------------------------------------------------------------------------------- /libNCUI/module/dll/DllRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllRunner.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/DllRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllRunner.h -------------------------------------------------------------------------------- /libNCUI/module/dll/DllV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllV8Handler.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/DllV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllV8Handler.h -------------------------------------------------------------------------------- /libNCUI/module/dll/DllValueAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllValueAccessor.h -------------------------------------------------------------------------------- /libNCUI/module/dll/DllValueHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllValueHandler.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/DllValueHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/DllValueHandler.h -------------------------------------------------------------------------------- /libNCUI/module/dll/JsTypeMapHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/JsTypeMapHandler.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/JsTypeMapHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/JsTypeMapHandler.h -------------------------------------------------------------------------------- /libNCUI/module/dll/TypeMapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/TypeMapManager.cpp -------------------------------------------------------------------------------- /libNCUI/module/dll/TypeMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/module/dll/TypeMapManager.h -------------------------------------------------------------------------------- /libNCUI/node/CefCallbackHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/CefCallbackHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/CefCallbackHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/CefCallbackHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeContextMenuHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeContextMenuHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeContextMenuHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeContextMenuHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeDialogHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDialogHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeDialogHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDialogHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeDisplayHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDisplayHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeDisplayHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDisplayHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeDownloadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDownloadHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeDownloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDownloadHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeDragHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDragHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeDragHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeDragHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeFocusHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeFocusHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeFocusHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeFocusHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeGeolocationHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeGeolocationHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeGeolocationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeGeolocationHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeHandlerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeHandlerHelper.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeHandlerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeHandlerHelper.h -------------------------------------------------------------------------------- /libNCUI/node/NodeJSDialogHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeJSDialogHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeJSDialogHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeJSDialogHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeKeyboardHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeKeyboardHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeKeyboardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeKeyboardHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeLifeSpanHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeLifeSpanHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeLifeSpanHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeLifeSpanHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeLoadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeLoadHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeLoadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeLoadHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeMessageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeMessageHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeMessageHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeRenderHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeRenderHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeRenderHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeRenderHandler.h -------------------------------------------------------------------------------- /libNCUI/node/NodeRequestHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeRequestHandler.cpp -------------------------------------------------------------------------------- /libNCUI/node/NodeRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/node/NodeRequestHandler.h -------------------------------------------------------------------------------- /libNCUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/resource.h -------------------------------------------------------------------------------- /libNCUI/scheme/DllFileHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/DllFileHandler.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/DllFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/DllFileHandler.h -------------------------------------------------------------------------------- /libNCUI/scheme/DllFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/DllFileManager.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/DllFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/DllFileManager.h -------------------------------------------------------------------------------- /libNCUI/scheme/LocalSchemeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/LocalSchemeHandler.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/LocalSchemeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/LocalSchemeHandler.h -------------------------------------------------------------------------------- /libNCUI/scheme/NativeFileHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/NativeFileHandler.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/NativeFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/NativeFileHandler.h -------------------------------------------------------------------------------- /libNCUI/scheme/ZipFileHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/ZipFileHandler.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/ZipFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/ZipFileHandler.h -------------------------------------------------------------------------------- /libNCUI/scheme/ZipFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/ZipFileManager.h -------------------------------------------------------------------------------- /libNCUI/scheme/ZipFileManger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/ZipFileManger.cpp -------------------------------------------------------------------------------- /libNCUI/scheme/ZipFileMnager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/scheme/ZipFileMnager.cpp -------------------------------------------------------------------------------- /libNCUI/settings/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/AppSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/AppSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/BasicSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/BasicSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/BasicSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/BasicSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/BrowserWindowSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/BrowserWindowSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/DowloaderSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/DowloaderSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/DowloaderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/DowloaderSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/MenuWindowSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/MenuWindowSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/MenuWindowSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/MenuWindowSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/NativeWindowSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/NativeWindowSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/OverlapSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/OverlapSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/OverlapSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/OverlapSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/RequestSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/RequestSettings.cpp -------------------------------------------------------------------------------- /libNCUI/settings/RequestSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/RequestSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/SplashWindowSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/SplashWindowSettings.h -------------------------------------------------------------------------------- /libNCUI/settings/ThemeSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/settings/ThemeSettings.hpp -------------------------------------------------------------------------------- /libNCUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/stdafx.cpp -------------------------------------------------------------------------------- /libNCUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/stdafx.h -------------------------------------------------------------------------------- /libNCUI/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/targetver.h -------------------------------------------------------------------------------- /libNCUI/transfer/ActionTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ActionTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/ActionTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ActionTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/AppTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/AppTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/AppTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/AppTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserHostTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserHostTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserHostTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserHostTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserTransferMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserTransferMgr.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserTransferMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserTransferMgr.h -------------------------------------------------------------------------------- /libNCUI/transfer/BrowserWindowTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/BrowserWindowTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/ClassTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ClassTransfer.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/ClipboardTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ClipboardTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/ClipboardTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ClipboardTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/CommandLineTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/CommandLineTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/CommandLineTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/CommandLineTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/ControlTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ControlTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/ControlTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ControlTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/DesktopTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DesktopTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/DesktopTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DesktopTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/DialogTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DialogTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/DialogTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DialogTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/DownloaderTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DownloaderTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/DownloaderTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/DownloaderTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/EventTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/EventTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/EventTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/EventTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/FrameTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/FrameTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/FrameTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/FrameTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/FunctionWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/FunctionWrapper.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/IPCTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/IPCTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/IPCTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/IPCTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/KeyboardTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/KeyboardTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/KeyboardTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/KeyboardTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/MenuTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/MenuTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/MenuTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/MenuTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/MouseTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/MouseTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/MouseTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/MouseTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/NativeWindowTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/NativeWindowTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/NetTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/NetTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/NetTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/NetTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/ProcessTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ProcessTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/ProcessTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ProcessTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/RendererTransferMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/RendererTransferMgr.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/RendererTransferMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/RendererTransferMgr.h -------------------------------------------------------------------------------- /libNCUI/transfer/RequestTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/RequestTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/RequestTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/RequestTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/RunnableTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/RunnableTransfer.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/ShellTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ShellTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/ShellTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ShellTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/SplashTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SplashTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/SplashTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SplashTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/SystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SystemInfo.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SystemInfo.h -------------------------------------------------------------------------------- /libNCUI/transfer/SystemTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SystemTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/SystemTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/SystemTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/ThreadTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/ThreadTransfer.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/Transfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/Transfer.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferEventInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferEventInfo.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferHelper.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferMapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferMapping.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferMappingMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferMappingMgr.hpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferMgr.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/TransferMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TransferMgr.h -------------------------------------------------------------------------------- /libNCUI/transfer/TrayTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TrayTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/TrayTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/TrayTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/UIThreadTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/UIThreadTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/UIThreadTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/UIThreadTransfer.h -------------------------------------------------------------------------------- /libNCUI/transfer/URLRequestTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/URLRequestTransfer.cpp -------------------------------------------------------------------------------- /libNCUI/transfer/URLRequestTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/transfer/URLRequestTransfer.h -------------------------------------------------------------------------------- /libNCUI/ui/win/ActionPreprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ActionPreprocessor.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/ActionPreprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ActionPreprocessor.h -------------------------------------------------------------------------------- /libNCUI/ui/win/Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/Bitmap.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindowManager.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindowManager.h -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindowSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindowSkin.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/BrowserWindowSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BrowserWindowSkin.h -------------------------------------------------------------------------------- /libNCUI/ui/win/BytesWriteHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BytesWriteHandler.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/BytesWriteHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/BytesWriteHandler.h -------------------------------------------------------------------------------- /libNCUI/ui/win/GifEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/GifEncoder.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/Imm32Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/Imm32Manager.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/Imm32Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/Imm32Manager.h -------------------------------------------------------------------------------- /libNCUI/ui/win/LayeredWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/LayeredWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/LayeredWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/LayeredWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/LocalWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/LocalWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/LocalWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/LocalWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/MessageWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/MessageWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/MessageWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/MessageWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/NativeWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/NativeWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/NativeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/NativeWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/NativeWindowProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/NativeWindowProxy.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/NativeWindowProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/NativeWindowProxy.h -------------------------------------------------------------------------------- /libNCUI/ui/win/OffScreenRenderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/OffScreenRenderView.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/OffScreenRenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/OffScreenRenderView.h -------------------------------------------------------------------------------- /libNCUI/ui/win/OffscreenDragdrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/OffscreenDragdrop.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/OffscreenDragdrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/OffscreenDragdrop.h -------------------------------------------------------------------------------- /libNCUI/ui/win/OffscreenDragdropEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/OffscreenDragdropEvents.h -------------------------------------------------------------------------------- /libNCUI/ui/win/PictureView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/PictureView.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/PictureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/PictureView.h -------------------------------------------------------------------------------- /libNCUI/ui/win/RenderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/RenderView.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/RenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/RenderView.h -------------------------------------------------------------------------------- /libNCUI/ui/win/ShadowWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ShadowWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/ShadowWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ShadowWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/SharedMemory.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/SharedMemory.h -------------------------------------------------------------------------------- /libNCUI/ui/win/SplashWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/SplashWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/SplashWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/SplashWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/ViewRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ViewRenderer.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/ViewRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/ViewRenderer.h -------------------------------------------------------------------------------- /libNCUI/ui/win/WebkitView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/WebkitView.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/WebkitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/WebkitView.h -------------------------------------------------------------------------------- /libNCUI/ui/win/WinUserMsg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/WinUserMsg.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/clipboard/ClipWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/clipboard/ClipWatcher.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/clipboard/ClipWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/clipboard/ClipWatcher.h -------------------------------------------------------------------------------- /libNCUI/ui/win/clipboard/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/clipboard/Clipboard.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/clipboard/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/clipboard/Clipboard.h -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/ContextMenuWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/ContextMenuWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuElementUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuElementUI.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuElementUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuElementUI.h -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuUI.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuUI.h -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/MenuWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/MenuWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/menu/ObserverImplBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/menu/ObserverImplBase.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/overlap/Overlap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/overlap/Overlap.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/overlap/OverlapData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/overlap/OverlapData.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/overlap/PaintResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/overlap/PaintResource.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/renderer/D2D1Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/renderer/D2D1Bitmap.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/renderer/D2D1Render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/renderer/D2D1Render.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/renderer/D2D1Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/renderer/D2D1Utility.hpp -------------------------------------------------------------------------------- /libNCUI/ui/win/renderer/GdiRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/renderer/GdiRenderer.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/renderer/GdiRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/renderer/GdiRenderer.h -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/404.html -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/BrowserWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/BrowserWindow.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/MenuElement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/MenuElement.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/MenuElementMisc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/MenuElementMisc.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/MenuWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/MenuWindow.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/MessageBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/MessageBox.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/NCUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/NCUI.js -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/NativeWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/NativeWindow.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/NotifyWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/NotifyWindow.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/RenderView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/RenderView.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/SplashWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/SplashWindow.xml -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/build.bat: -------------------------------------------------------------------------------- 1 | python build.py -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/build.py -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/js2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/js2c.py -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/jsmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/jsmin.py -------------------------------------------------------------------------------- /libNCUI/ui/win/skin/jsmin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/skin/jsmin.pyc -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/NotifyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/NotifyWindow.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/NotifyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/NotifyWindow.h -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/Tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/Tray.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/Tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/Tray.h -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/TrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/TrayBase.cpp -------------------------------------------------------------------------------- /libNCUI/ui/win/tray/TrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/ui/win/tray/TrayBase.h -------------------------------------------------------------------------------- /libNCUI/utility/libzippp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/utility/libzippp.cpp -------------------------------------------------------------------------------- /libNCUI/utility/libzippp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/utility/libzippp.h -------------------------------------------------------------------------------- /libNCUI/utility/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libNCUI/utility/utility.hpp -------------------------------------------------------------------------------- /libResource/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/ReadMe.txt -------------------------------------------------------------------------------- /libResource/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/dllmain.cpp -------------------------------------------------------------------------------- /libResource/libResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/libResource.cpp -------------------------------------------------------------------------------- /libResource/libResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/libResource.h -------------------------------------------------------------------------------- /libResource/libResource.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/libResource.vcxproj -------------------------------------------------------------------------------- /libResource/libResource.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/libResource.vcxproj.filters -------------------------------------------------------------------------------- /libResource/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/stdafx.cpp -------------------------------------------------------------------------------- /libResource/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/stdafx.h -------------------------------------------------------------------------------- /libResource/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/libResource/targetver.h -------------------------------------------------------------------------------- /library/sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/library/sqlite3.lib -------------------------------------------------------------------------------- /library/zip.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/library/zip.lib -------------------------------------------------------------------------------- /library/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/library/zlib.lib -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node.py -------------------------------------------------------------------------------- /node_cef_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_cef_util.py -------------------------------------------------------------------------------- /node_cef_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_cef_util.pyc -------------------------------------------------------------------------------- /node_runner/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/ReadMe.txt -------------------------------------------------------------------------------- /node_runner/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/dllmain.cpp -------------------------------------------------------------------------------- /node_runner/node_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/node_runner.cpp -------------------------------------------------------------------------------- /node_runner/node_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/node_runner.h -------------------------------------------------------------------------------- /node_runner/node_runner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/node_runner.vcxproj -------------------------------------------------------------------------------- /node_runner/node_runner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/node_runner.vcxproj.filters -------------------------------------------------------------------------------- /node_runner/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/stdafx.cpp -------------------------------------------------------------------------------- /node_runner/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/stdafx.h -------------------------------------------------------------------------------- /node_runner/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/node_runner/targetver.h -------------------------------------------------------------------------------- /pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/pack.py -------------------------------------------------------------------------------- /plugins/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ReadMe.txt -------------------------------------------------------------------------------- /plugins/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/binding.cc -------------------------------------------------------------------------------- /plugins/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/binding.gyp -------------------------------------------------------------------------------- /plugins/build/binding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/build/binding.sln -------------------------------------------------------------------------------- /plugins/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/build/config.gypi -------------------------------------------------------------------------------- /plugins/build/ncui-dev.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/build/ncui-dev.vcxproj -------------------------------------------------------------------------------- /plugins/build/ncui-dev.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/build/ncui-dev.vcxproj.filters -------------------------------------------------------------------------------- /plugins/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/dllmain.cpp -------------------------------------------------------------------------------- /plugins/example/accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/example/accessors.cpp -------------------------------------------------------------------------------- /plugins/example/myobject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/example/myobject.cc -------------------------------------------------------------------------------- /plugins/example/myobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/example/myobject.h -------------------------------------------------------------------------------- /plugins/handler/NodeProcessHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/handler/NodeProcessHandler.cpp -------------------------------------------------------------------------------- /plugins/handler/NodeProcessHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/handler/NodeProcessHandler.h -------------------------------------------------------------------------------- /plugins/include/v8wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/include/v8wrap.h -------------------------------------------------------------------------------- /plugins/include/v8wrap/ClassMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/include/v8wrap/ClassMethod.h -------------------------------------------------------------------------------- /plugins/include/v8wrap/ConvertBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/include/v8wrap/ConvertBasic.h -------------------------------------------------------------------------------- /plugins/include/v8wrap/ConvertClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/include/v8wrap/ConvertClass.h -------------------------------------------------------------------------------- /plugins/include/v8wrap/ConvertFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/include/v8wrap/ConvertFunction.h -------------------------------------------------------------------------------- /plugins/ipc/NodeMessageEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ipc/NodeMessageEmitter.cpp -------------------------------------------------------------------------------- /plugins/ipc/NodeMessageEmitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ipc/NodeMessageEmitter.hpp -------------------------------------------------------------------------------- /plugins/ipc/NodeProcessExchanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ipc/NodeProcessExchanger.hpp -------------------------------------------------------------------------------- /plugins/module/ConstructorMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/ConstructorMgr.cpp -------------------------------------------------------------------------------- /plugins/module/ConstructorMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/ConstructorMgr.h -------------------------------------------------------------------------------- /plugins/module/IPCNodeV8Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/IPCNodeV8Handler.cpp -------------------------------------------------------------------------------- /plugins/module/IPCNodeV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/IPCNodeV8Handler.h -------------------------------------------------------------------------------- /plugins/module/NodeClassV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/NodeClassV8Handler.h -------------------------------------------------------------------------------- /plugins/module/NodeTypeConvertor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/NodeTypeConvertor.cpp -------------------------------------------------------------------------------- /plugins/module/NodeTypeConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/NodeTypeConvertor.h -------------------------------------------------------------------------------- /plugins/module/NodeV8Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/module/NodeV8Handler.h -------------------------------------------------------------------------------- /plugins/nan/.dntrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/.dntrc -------------------------------------------------------------------------------- /plugins/nan/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ -------------------------------------------------------------------------------- /plugins/nan/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/.npmignore -------------------------------------------------------------------------------- /plugins/nan/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/.travis.yml -------------------------------------------------------------------------------- /plugins/nan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/nan/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/LICENSE.md -------------------------------------------------------------------------------- /plugins/nan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/Makefile -------------------------------------------------------------------------------- /plugins/nan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/README.md -------------------------------------------------------------------------------- /plugins/nan/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/appveyor.yml -------------------------------------------------------------------------------- /plugins/nan/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/cpplint.py -------------------------------------------------------------------------------- /plugins/nan/doc/.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/.build.sh -------------------------------------------------------------------------------- /plugins/nan/doc/asyncworker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/asyncworker.md -------------------------------------------------------------------------------- /plugins/nan/doc/buffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/buffers.md -------------------------------------------------------------------------------- /plugins/nan/doc/callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/callback.md -------------------------------------------------------------------------------- /plugins/nan/doc/converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/converters.md -------------------------------------------------------------------------------- /plugins/nan/doc/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/errors.md -------------------------------------------------------------------------------- /plugins/nan/doc/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/json.md -------------------------------------------------------------------------------- /plugins/nan/doc/maybe_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/maybe_types.md -------------------------------------------------------------------------------- /plugins/nan/doc/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/methods.md -------------------------------------------------------------------------------- /plugins/nan/doc/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/new.md -------------------------------------------------------------------------------- /plugins/nan/doc/node_misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/node_misc.md -------------------------------------------------------------------------------- /plugins/nan/doc/object_wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/object_wrappers.md -------------------------------------------------------------------------------- /plugins/nan/doc/persistent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/persistent.md -------------------------------------------------------------------------------- /plugins/nan/doc/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/scopes.md -------------------------------------------------------------------------------- /plugins/nan/doc/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/script.md -------------------------------------------------------------------------------- /plugins/nan/doc/string_bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/string_bytes.md -------------------------------------------------------------------------------- /plugins/nan/doc/v8_internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/v8_internals.md -------------------------------------------------------------------------------- /plugins/nan/doc/v8_misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/doc/v8_misc.md -------------------------------------------------------------------------------- /plugins/nan/include_dirs.js: -------------------------------------------------------------------------------- 1 | console.log(require('path').relative('.', __dirname)); 2 | -------------------------------------------------------------------------------- /plugins/nan/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan.h -------------------------------------------------------------------------------- /plugins/nan/nan_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_callbacks.h -------------------------------------------------------------------------------- /plugins/nan/nan_callbacks_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_callbacks_12_inl.h -------------------------------------------------------------------------------- /plugins/nan/nan_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_converters.h -------------------------------------------------------------------------------- /plugins/nan/nan_converters_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_converters_43_inl.h -------------------------------------------------------------------------------- /plugins/nan/nan_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_json.h -------------------------------------------------------------------------------- /plugins/nan/nan_maybe_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_maybe_43_inl.h -------------------------------------------------------------------------------- /plugins/nan/nan_maybe_pre_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_maybe_pre_43_inl.h -------------------------------------------------------------------------------- /plugins/nan/nan_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_new.h -------------------------------------------------------------------------------- /plugins/nan/nan_object_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_object_wrap.h -------------------------------------------------------------------------------- /plugins/nan/nan_persistent_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_persistent_12_inl.h -------------------------------------------------------------------------------- /plugins/nan/nan_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_private.h -------------------------------------------------------------------------------- /plugins/nan/nan_string_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_string_bytes.h -------------------------------------------------------------------------------- /plugins/nan/nan_typedarray_contents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_typedarray_contents.h -------------------------------------------------------------------------------- /plugins/nan/nan_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/nan_weak.h -------------------------------------------------------------------------------- /plugins/nan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/package.json -------------------------------------------------------------------------------- /plugins/nan/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/.jshintrc -------------------------------------------------------------------------------- /plugins/nan/test/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/binding.gyp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/accessors.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/accessors2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/accessors2.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/asyncworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/asyncworker.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/buffer.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/converters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/converters.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/error.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/gc.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/isolatedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/isolatedata.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/json-parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/json-parse.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/makecallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/makecallback.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/morenews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/morenews.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/multifile1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/multifile1.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/multifile2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/multifile2.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/multifile2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/multifile2.h -------------------------------------------------------------------------------- /plugins/nan/test/cpp/nancallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/nancallback.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/nannew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/nannew.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/news.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/news.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/persistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/persistent.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/private.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/returnnull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/returnnull.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/returnvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/returnvalue.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/settemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/settemplate.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/strings.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/symbols.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/threadlocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/threadlocal.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/trycatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/trycatch.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/typedarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/typedarrays.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/weak.cpp -------------------------------------------------------------------------------- /plugins/nan/test/cpp/weak2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/cpp/weak2.cpp -------------------------------------------------------------------------------- /plugins/nan/test/js/accessors-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/accessors-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/buffer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/buffer-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/error-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/error-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/gc-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/gc-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/morenews-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/morenews-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/multifile-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/multifile-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/nannew-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/nannew-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/news-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/news-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/private-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/private-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/strings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/strings-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/symbols-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/symbols-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/trycatch-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/trycatch-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/weak-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/weak-test.js -------------------------------------------------------------------------------- /plugins/nan/test/js/weak2-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/test/js/weak2-test.js -------------------------------------------------------------------------------- /plugins/nan/tools/1to2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/tools/1to2.js -------------------------------------------------------------------------------- /plugins/nan/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/tools/README.md -------------------------------------------------------------------------------- /plugins/nan/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/nan/tools/package.json -------------------------------------------------------------------------------- /plugins/ncui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ncui.cpp -------------------------------------------------------------------------------- /plugins/ncui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ncui.h -------------------------------------------------------------------------------- /plugins/ncui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ncui.vcxproj -------------------------------------------------------------------------------- /plugins/ncui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/ncui.vcxproj.filters -------------------------------------------------------------------------------- /plugins/node-addon-examples-master/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /plugins/node-addon-examples-master/2_function_arguments/README.md: -------------------------------------------------------------------------------- 1 | ## Example 2: *Function arguments* 2 | 3 | -------------------------------------------------------------------------------- /plugins/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/stdafx.cpp -------------------------------------------------------------------------------- /plugins/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/stdafx.h -------------------------------------------------------------------------------- /plugins/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/targetver.h -------------------------------------------------------------------------------- /plugins/transfer/NodeTransferMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/plugins/transfer/NodeTransferMgr.hpp -------------------------------------------------------------------------------- /renderer_modules/libExt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/ReadMe.txt -------------------------------------------------------------------------------- /renderer_modules/libExt/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/dllmain.cpp -------------------------------------------------------------------------------- /renderer_modules/libExt/libExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/libExt.cpp -------------------------------------------------------------------------------- /renderer_modules/libExt/libExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/libExt.h -------------------------------------------------------------------------------- /renderer_modules/libExt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/stdafx.cpp -------------------------------------------------------------------------------- /renderer_modules/libExt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/stdafx.h -------------------------------------------------------------------------------- /renderer_modules/libExt/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libExt/targetver.h -------------------------------------------------------------------------------- /renderer_modules/libsExt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libsExt/ReadMe.txt -------------------------------------------------------------------------------- /renderer_modules/libsExt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libsExt/stdafx.cpp -------------------------------------------------------------------------------- /renderer_modules/libsExt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libsExt/stdafx.h -------------------------------------------------------------------------------- /renderer_modules/libsExt/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/renderer_modules/libsExt/targetver.h -------------------------------------------------------------------------------- /resources/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/7z.dll -------------------------------------------------------------------------------- /resources/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/7z.exe -------------------------------------------------------------------------------- /resources/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/images/splash.jpg -------------------------------------------------------------------------------- /resources/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/main.js -------------------------------------------------------------------------------- /resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/manifest.json -------------------------------------------------------------------------------- /resources/plugins/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/plugins/manifest.json -------------------------------------------------------------------------------- /resources/plugins/pepflashplayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/plugins/pepflashplayer.dll -------------------------------------------------------------------------------- /resources/skin/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/arrow.png -------------------------------------------------------------------------------- /resources/skin/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/checkbox.png -------------------------------------------------------------------------------- /resources/skin/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/close.png -------------------------------------------------------------------------------- /resources/skin/close_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/close_p.png -------------------------------------------------------------------------------- /resources/skin/huiyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/huiyuan.png -------------------------------------------------------------------------------- /resources/skin/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/logo.ico -------------------------------------------------------------------------------- /resources/skin/logo1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/logo1.ico -------------------------------------------------------------------------------- /resources/skin/logo2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/logo2.ico -------------------------------------------------------------------------------- /resources/skin/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/max.png -------------------------------------------------------------------------------- /resources/skin/max_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/max_p.png -------------------------------------------------------------------------------- /resources/skin/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/mini.png -------------------------------------------------------------------------------- /resources/skin/mini_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/mini_p.png -------------------------------------------------------------------------------- /resources/skin/pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/pick.png -------------------------------------------------------------------------------- /resources/skin/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/radio.png -------------------------------------------------------------------------------- /resources/skin/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/restore.png -------------------------------------------------------------------------------- /resources/skin/restore_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/restore_p.png -------------------------------------------------------------------------------- /resources/skin/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/skin/shadow.png -------------------------------------------------------------------------------- /resources/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/sqlite3.dll -------------------------------------------------------------------------------- /resources/vc2015/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/vc2015/msvcp140.dll -------------------------------------------------------------------------------- /resources/vc2015/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/vc2015/ucrtbase.dll -------------------------------------------------------------------------------- /resources/vc2015/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/vc2015/vcruntime140.dll -------------------------------------------------------------------------------- /resources/web/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/.project -------------------------------------------------------------------------------- /resources/web/dist/css/zui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/css/zui.css -------------------------------------------------------------------------------- /resources/web/dist/fonts/zenicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/fonts/zenicon.eot -------------------------------------------------------------------------------- /resources/web/dist/fonts/zenicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/fonts/zenicon.svg -------------------------------------------------------------------------------- /resources/web/dist/fonts/zenicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/fonts/zenicon.ttf -------------------------------------------------------------------------------- /resources/web/dist/fonts/zenicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/fonts/zenicon.woff -------------------------------------------------------------------------------- /resources/web/dist/js/zui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/dist/js/zui.js -------------------------------------------------------------------------------- /resources/web/docs/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/css/common.css -------------------------------------------------------------------------------- /resources/web/docs/css/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/css/doc.css -------------------------------------------------------------------------------- /resources/web/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/favicon.ico -------------------------------------------------------------------------------- /resources/web/docs/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/close.png -------------------------------------------------------------------------------- /resources/web/docs/images/close_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/close_p.png -------------------------------------------------------------------------------- /resources/web/docs/images/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/max.png -------------------------------------------------------------------------------- /resources/web/docs/images/max_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/max_p.png -------------------------------------------------------------------------------- /resources/web/docs/images/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/mini.png -------------------------------------------------------------------------------- /resources/web/docs/images/mini_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/mini_p.png -------------------------------------------------------------------------------- /resources/web/docs/images/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/images/restore.png -------------------------------------------------------------------------------- /resources/web/docs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/index.json -------------------------------------------------------------------------------- /resources/web/docs/index.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/index.min.json -------------------------------------------------------------------------------- /resources/web/docs/js/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/js/Popup.js -------------------------------------------------------------------------------- /resources/web/docs/js/Tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/js/Tester.js -------------------------------------------------------------------------------- /resources/web/docs/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/js/common.js -------------------------------------------------------------------------------- /resources/web/docs/js/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/js/doc.js -------------------------------------------------------------------------------- /resources/web/docs/js/vconsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/js/vconsole.js -------------------------------------------------------------------------------- /resources/web/docs/part/api-apiapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/part/api-apiapp.md -------------------------------------------------------------------------------- /resources/web/docs/part/api-apiipc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/part/api-apiipc.md -------------------------------------------------------------------------------- /resources/web/docs/part/api-apinet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/docs/part/api-apinet.md -------------------------------------------------------------------------------- /resources/web/example/js/appGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/example/js/appGen.js -------------------------------------------------------------------------------- /resources/web/example/js/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/example/js/keyboard.js -------------------------------------------------------------------------------- /resources/web/example/js/testJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/example/js/testJs.js -------------------------------------------------------------------------------- /resources/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/index.html -------------------------------------------------------------------------------- /resources/web/tmpl/chapter.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/web/tmpl/chapter.tmpl -------------------------------------------------------------------------------- /resources/zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/zip.dll -------------------------------------------------------------------------------- /resources/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/resources/zlib.dll -------------------------------------------------------------------------------- /startup/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/ReadMe.txt -------------------------------------------------------------------------------- /startup/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/dllmain.cpp -------------------------------------------------------------------------------- /startup/startup - 副本.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/startup - 副本.cpp -------------------------------------------------------------------------------- /startup/startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/startup.cpp -------------------------------------------------------------------------------- /startup/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/startup.h -------------------------------------------------------------------------------- /startup/startup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/startup.vcxproj -------------------------------------------------------------------------------- /startup/startup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/startup.vcxproj.filters -------------------------------------------------------------------------------- /startup/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/stdafx.cpp -------------------------------------------------------------------------------- /startup/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/stdafx.h -------------------------------------------------------------------------------- /startup/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/startup/targetver.h -------------------------------------------------------------------------------- /switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/switch.py -------------------------------------------------------------------------------- /third_party/DuiLib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/.gitignore -------------------------------------------------------------------------------- /third_party/DuiLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIButton.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UICombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UICombo.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIEdit.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIEdit.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIFlash.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UILabel.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIList.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIList.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIOption.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UISlider.h -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIText.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Control/UIText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Control/UIText.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIBase.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIBase.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIContainer.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIControl.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIControl.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIDefine.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIManager.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIManager.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIMarkup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIMarkup.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIMarkup.h -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIRender.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Core/UIRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Core/UIRender.h -------------------------------------------------------------------------------- /third_party/DuiLib/DuiLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/DuiLib.vcproj -------------------------------------------------------------------------------- /third_party/DuiLib/DuiLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/DuiLib.vcxproj -------------------------------------------------------------------------------- /third_party/DuiLib/README.md: -------------------------------------------------------------------------------- 1 | # DuiLib 2 | Duilib 增加透明窗口 -------------------------------------------------------------------------------- /third_party/DuiLib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/StdAfx.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/StdAfx.h -------------------------------------------------------------------------------- /third_party/DuiLib/UIlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/UIlib.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/UIlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/UIlib.h -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/UIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/UIDelegate.h -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/Utils.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/Utils.h -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/WndShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/WndShadow.h -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/XUnzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/XUnzip.cpp -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/stb_image.c -------------------------------------------------------------------------------- /third_party/DuiLib/Utils/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/DuiLib/Utils/stb_image.h -------------------------------------------------------------------------------- /third_party/amo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/.gitignore -------------------------------------------------------------------------------- /third_party/amo/README.md: -------------------------------------------------------------------------------- 1 | #amo 2 | -------------------------------------------------------------------------------- /third_party/amo/amo.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo.gyp -------------------------------------------------------------------------------- /third_party/amo/amo.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo.gypi -------------------------------------------------------------------------------- /third_party/amo/amo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo.sln -------------------------------------------------------------------------------- /third_party/amo/amo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo.vcxproj -------------------------------------------------------------------------------- /third_party/amo/amo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo.vcxproj.filters -------------------------------------------------------------------------------- /third_party/amo/amo/File2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/File2.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/adb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/adb.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/adb1031.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/adb1031.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/adb1032.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/adb1032.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/adb1036.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/adb1036.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/adb1039.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/adb1039.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/amo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/amo.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/any.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/app.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/archive.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/array.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ascii.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio/config.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio/http.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio/st_asio_wrapper/ext/client.h: -------------------------------------------------------------------------------- 1 | //just for compatiblity 2 | #include "tcp.h" 3 | -------------------------------------------------------------------------------- /third_party/amo/amo/asio/st_asio_wrapper/ext/server.h: -------------------------------------------------------------------------------- 1 | //just for compatiblity 2 | #include "tcp.h" 3 | -------------------------------------------------------------------------------- /third_party/amo/amo/asio/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio/tcp.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio/udp.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/asio/udp/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/asio/udp/udp.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/atomic.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/base64.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/bigstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/bigstr.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/bimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/bimap.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/binary.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/bit_converter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/bit_converter.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/blob.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/byte_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/byte_buffer.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/byte_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/byte_order.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/chrono.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/codecvt.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/comment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/comment.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/config.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/daemon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/daemon.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/database.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/date.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/date_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/date_time.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/delegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/delegate.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/directory.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/exchanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/exchanger.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/file.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/file_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/file_mapping.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filestream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filestream.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filesync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filesync.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filesystem.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filetoc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filetoc.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filewatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filewatch.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/filewatch_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/filewatch_t.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/foreach.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/format.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/functional.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/future.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/hash.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ipc.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ipc/Transfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ipc/Transfer.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ipc/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ipc/any.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ipc/ipc_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ipc/ipc_impl.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ipc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ipc/utility.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/json.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/json_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/json_helper.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/json_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/json_object.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/jsonfmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/jsonfmt.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/launch.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/lexical_cast.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/limits.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/loader.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/loader_lite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/loader_lite.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/logger.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/md5.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/memory.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/mqtt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/mqtt.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/mutex.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/network.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/nil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/nil.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/noncopyable.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/object.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/optional.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/path.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/pipe.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/platforms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/platforms.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/process.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/random.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/ratio.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/rect.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/regex.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/registry.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/regular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/regular.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/safe_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/safe_map.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/scheduler.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/sha1.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/shared_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/shared_memory.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/shell.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/signals2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/signals2.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/sigsolt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/sigsolt.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/singleton.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/sln2gyp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/sln2gyp.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/smart_ptr.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/softeware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/softeware.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/stdint.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/string.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/string/iconv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/string/iconv.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/stringify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/stringify.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/system.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/system_error.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/task_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/task_timer.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/test.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/text.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/thread.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/thread_pool.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/time.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/timer.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/tribool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/tribool.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/tuple.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/type_traits.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/uid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/uid.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/unordered_map.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/unordered_set.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/utility.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/uuid.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/variant.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/win/app_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/win/app_win.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/win/shell_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/win/shell_win.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/windows.hpp -------------------------------------------------------------------------------- /third_party/amo/amo/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/amo/xml.hpp -------------------------------------------------------------------------------- /third_party/amo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/build.sh -------------------------------------------------------------------------------- /third_party/amo/common.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/common.gyp -------------------------------------------------------------------------------- /third_party/amo/examples.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples.gyp -------------------------------------------------------------------------------- /third_party/amo/examples.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples.gypi -------------------------------------------------------------------------------- /third_party/amo/examples.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples.vcxproj -------------------------------------------------------------------------------- /third_party/amo/examples/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/any.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/binary.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/delegate.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/file.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/format.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/json.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/launch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/launch.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/loader.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/logger.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/main.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/path.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/sigsolt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/sigsolt.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/string.cpp -------------------------------------------------------------------------------- /third_party/amo/examples/systeminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/systeminfo.h -------------------------------------------------------------------------------- /third_party/amo/examples/uid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/examples/uid.cpp -------------------------------------------------------------------------------- /third_party/amo/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/amo/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/format.cc -------------------------------------------------------------------------------- /third_party/amo/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/format.h -------------------------------------------------------------------------------- /third_party/amo/fmt/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/ostream.cc -------------------------------------------------------------------------------- /third_party/amo/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/ostream.h -------------------------------------------------------------------------------- /third_party/amo/fmt/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/posix.cc -------------------------------------------------------------------------------- /third_party/amo/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/posix.h -------------------------------------------------------------------------------- /third_party/amo/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/printf.h -------------------------------------------------------------------------------- /third_party/amo/fmt/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/string.h -------------------------------------------------------------------------------- /third_party/amo/fmt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/fmt/time.h -------------------------------------------------------------------------------- /third_party/amo/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/gtest/gtest-message.h -------------------------------------------------------------------------------- /third_party/amo/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/gtest/gtest-spi.h -------------------------------------------------------------------------------- /third_party/amo/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/gtest/gtest.h -------------------------------------------------------------------------------- /third_party/amo/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/gtest/gtest_prod.h -------------------------------------------------------------------------------- /third_party/amo/gyp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/gyp.json -------------------------------------------------------------------------------- /third_party/amo/library/gtest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/library/gtest.lib -------------------------------------------------------------------------------- /third_party/amo/library/gtestd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/library/gtestd.lib -------------------------------------------------------------------------------- /third_party/amo/library/sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/library/sqlite3.lib -------------------------------------------------------------------------------- /third_party/amo/library/zip.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/library/zip.lib -------------------------------------------------------------------------------- /third_party/amo/library/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/library/zlib.lib -------------------------------------------------------------------------------- /third_party/amo/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/nlohmann/json.hpp -------------------------------------------------------------------------------- /third_party/amo/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/document.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/encodings.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/error/en.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/fwd.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/pointer.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/reader.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/schema.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/stream.h -------------------------------------------------------------------------------- /third_party/amo/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/rapidjson/writer.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/async_logger.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/common.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/details/os.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/formatter.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/logger.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/spdlog.h -------------------------------------------------------------------------------- /third_party/amo/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/spdlog/tweakme.h -------------------------------------------------------------------------------- /third_party/amo/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/test.hpp -------------------------------------------------------------------------------- /third_party/amo/tools/file2c/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/tools/file2c/stdafx.h -------------------------------------------------------------------------------- /third_party/amo/tools/test/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/tools/test/ReadMe.txt -------------------------------------------------------------------------------- /third_party/amo/tools/test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/tools/test/stdafx.cpp -------------------------------------------------------------------------------- /third_party/amo/tools/test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/tools/test/stdafx.h -------------------------------------------------------------------------------- /third_party/amo/tools/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/tools/test/test.cpp -------------------------------------------------------------------------------- /third_party/amo/toutf8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/toutf8.bat -------------------------------------------------------------------------------- /third_party/amo/toutf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/amo/toutf8.py -------------------------------------------------------------------------------- /third_party/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /third_party/sqlite3/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/third_party/sqlite3/sqlite3ext.h -------------------------------------------------------------------------------- /toutf8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/toutf8.bat -------------------------------------------------------------------------------- /toutf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/toutf8.py -------------------------------------------------------------------------------- /已知BUG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/已知BUG.txt -------------------------------------------------------------------------------- /编译说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/编译说明.txt -------------------------------------------------------------------------------- /说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoylel/NCUI/HEAD/说明.txt --------------------------------------------------------------------------------