/
Smitis
/
PurePortable
Обзор
Документация
Войти
/
Smitis
/
PurePortable
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PureSimple/PureSimpleLoader.pb
69 строк
2 KB
Smitis
v4.10.0.30
11 окт 2024, 13:06
11 окт 2024, 13:06
20370c9
Код
Авторство
О чём код?
;;====================================================================================================================== ; PurePortable for PureApps ;;====================================================================================================================== ;PP_SILENT ;PP_PUREPORTABLE 1 ;PP_FORMAT DLL ;PP_ENABLETHREAD 1 ;RES_VERSION 4.10.0.6 ;RES_DESCRIPTION PurePortableSimple Loader ;RES_COPYRIGHT (c) Smitis, 2017-2024 ;RES_INTERNALNAME 400.dll ;RES_PRODUCTNAME PurePortable ;RES_PRODUCTVERSION 4.10.0.0 ;PP_X32_COPYAS "Temp\Proxy32.dll" ;PP_X64_COPYAS "Temp\Proxy64.dll" ;PP_CLEAN 2 EnableExplicit IncludePath "..\PPDK\Lib" ;XIncludeFile "PurePortableCustom.pbi" #PROXY_DLL = "pureport" ;#PROXY_DLL_COMPATIBILITY = 7 ; Совместимость: 5 - XP, 7 - Windows 7 (default), 10 - Windows 10 #PROXY_ERROR_MODE = 0 XIncludeFile "PurePortableProxy.pbi" ;;====================================================================================================================== ProcedureDLL.l AttachProcess(Instance) DisableThreadLibraryCalls_(Instance) CompilerIf #PB_Compiler_Processor = #PB_Processor_x86 Protected dll.s = "PurePort32.dll" CompilerElse Protected dll.s = "PurePort64.dll" CompilerEndIf If FileExist(PrgDir+dll) dll = PrgDir+dll ElseIf FileExist(PrgDir+"PurePort.dll") dll = PrgDir+"PurePort.dll" EndIf LoadLibrary_(@dll) ;PPInitialization EndProcedure ;;---------------------------------------------------------------------------------------------------------------------- ;ProcedureDLL.l DetachProcess(Instance) ; ; PPFinish ;EndProcedure ;;====================================================================================================================== ; IDE Options = PureBasic 6.04 LTS (Windows - x86) ; ExecutableFormat = Shared dll ; CursorPosition = 8 ; Folding = - ; Optimizer ; EnableThread ; Executable = PureSimpleLoader.dll ; DisableDebugger ; EnableExeConstant ; IncludeVersionInfo ; VersionField0 = 4.10.0.0 ; VersionField1 = 4.10.0.0 ; VersionField3 = PurePortable ; VersionField4 = 4.10.0.0 ; VersionField5 = 4.10.0.0 ; VersionField6 = PurePortableSimple Loader ; VersionField7 = PureSimpleLoader.dll ; VersionField9 = (c) Smitis, 2017-2024