1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
/****************************************************************************** * * Project: GDAL * Purpose: GDALAlgorithm C API * Author: Even Rouault * ****************************************************************************** * Copyright (c) 2025, Even Rouault * * SPDX-License-Identifier: MIT ****************************************************************************/ #ifndef GDAL_ALGORITHM_C_INCLUDED #define GDAL_ALGORITHM_C_INCLUDED #include "cpl_port.h" #include "cpl_progress.h" #include "gdal.h" /************************************************************************/ /************************************************************************/ /* GDAL Algorithm C API */ /************************************************************************/ /************************************************************************/ CPL_C_START /** Type of an argument */ typedef enum { /** Boolean type. Value is a bool. */ GAAT_BOOLEAN, /** Single-value string type. Value is a std::string */ GAAT_STRING, /** Single-value integer type. Value is a int */ GAAT_INTEGER, /** Single-value real type. Value is a double */ GAAT_REAL, /** Dataset type. Value is a GDALArgDatasetValue */ GAAT_DATASET, /** Multi-value string type. Value is a std::vector */ GAAT_STRING_LIST, /** Multi-value integer type. Value is a std::vector */ GAAT_INTEGER_LIST, /** Multi-value real type. Value is a std::vector */ GAAT_REAL_LIST, /** Multi-value dataset type. Value is a std::vector */ GAAT_DATASET_LIST, } GDALAlgorithmArgType; /** Return whether the argument type is a list / multi-valued one. */ bool CPL_DLL GDALAlgorithmArgTypeIsList(GDALAlgorithmArgType type); /** Return the string representation of the argument type */ const char CPL_DLL *GDALAlgorithmArgTypeName(GDALAlgorithmArgType type); /** Opaque C type for GDALArgDatasetValue */ typedef struct GDALArgDatasetValueHS *GDALArgDatasetValueH; /** Opaque C type for GDALAlgorithmArg */ typedef struct GDALAlgorithmArgHS *GDALAlgorithmArgH; /** Opaque C type for GDALAlgorithm */ typedef struct GDALAlgorithmHS *GDALAlgorithmH; /** Opaque C type for GDALAlgorithmRegistry */ typedef struct GDALAlgorithmRegistryHS *GDALAlgorithmRegistryH; /************************************************************************/ /* GDALAlgorithmRegistryH API */ /************************************************************************/ GDALAlgorithmRegistryH CPL_DLL GDALGetGlobalAlgorithmRegistry(void); void CPL_DLL GDALAlgorithmRegistryRelease(GDALAlgorithmRegistryH); char CPL_DLL **GDALAlgorithmRegistryGetAlgNames(GDALAlgorithmRegistryH); GDALAlgorithmH CPL_DLL GDALAlgorithmRegistryInstantiateAlg( GDALAlgorithmRegistryH, const char *pszAlgName); GDALAlgorithmH CPL_DLL GDALAlgorithmRegistryInstantiateAlgFromPath( GDALAlgorithmRegistryH, const char *const *papszAlgPath); /************************************************************************/ /* GDALAlgorithmH API */ /************************************************************************/ void CPL_DLL GDALAlgorithmRelease(GDALAlgorithmH); const char CPL_DLL *GDALAlgorithmGetName(GDALAlgorithmH); const char CPL_DLL *GDALAlgorithmGetDescription(GDALAlgorithmH); const char CPL_DLL *GDALAlgorithmGetLongDescription(GDALAlgorithmH); const char CPL_DLL *GDALAlgorithmGetHelpFullURL(GDALAlgorithmH); bool CPL_DLL GDALAlgorithmHasSubAlgorithms(GDALAlgorithmH); char CPL_DLL **GDALAlgorithmGetSubAlgorithmNames(GDALAlgorithmH); GDALAlgorithmH CPL_DLL GDALAlgorithmInstantiateSubAlgorithm(GDALAlgorithmH, const char *pszSubAlgName); bool CPL_DLL GDALAlgorithmParseCommandLineArguments(GDALAlgorithmH, CSLConstList papszArgs); GDALAlgorithmH CPL_DLL GDALAlgorithmGetActualAlgorithm(GDALAlgorithmH); bool CPL_DLL GDALAlgorithmRun(GDALAlgorithmH, GDALProgressFunc pfnProgress, void *pProgressData); bool CPL_DLL GDALAlgorithmFinalize(GDALAlgorithmH); char CPL_DLL *GDALAlgorithmGetUsageAsJSON(GDALAlgorithmH); char CPL_DLL **GDALAlgorithmGetArgNames(GDALAlgorithmH); GDALAlgorithmArgH CPL_DLL GDALAlgorithmGetArg(GDALAlgorithmH, const char *pszArgName); GDALAlgorithmArgH CPL_DLL GDALAlgorithmGetArgNonConst(GDALAlgorithmH, const char *pszArgName); /************************************************************************/ /* GDALAlgorithmArgH API */ /************************************************************************/ void CPL_DLL GDALAlgorithmArgRelease(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetName(GDALAlgorithmArgH); GDALAlgorithmArgType CPL_DLL GDALAlgorithmArgGetType(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetDescription(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetShortName(GDALAlgorithmArgH); char CPL_DLL **GDALAlgorithmArgGetAliases(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetMetaVar(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetCategory(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgIsPositional(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgIsRequired(GDALAlgorithmArgH); int CPL_DLL GDALAlgorithmArgGetMinCount(GDALAlgorithmArgH); int CPL_DLL GDALAlgorithmArgGetMaxCount(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgGetPackedValuesAllowed(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgGetRepeatedArgAllowed(GDALAlgorithmArgH); char CPL_DLL **GDALAlgorithmArgGetChoices(GDALAlgorithmArgH); char CPL_DLL **GDALAlgorithmArgGetMetadataItem(GDALAlgorithmArgH, const char *); bool CPL_DLL GDALAlgorithmArgIsExplicitlySet(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgHasDefaultValue(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgGetDefaultAsBoolean(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetDefaultAsString(GDALAlgorithmArgH); int CPL_DLL GDALAlgorithmArgGetDefaultAsInteger(GDALAlgorithmArgH); double CPL_DLL GDALAlgorithmArgGetDefaultAsDouble(GDALAlgorithmArgH); char CPL_DLL **GDALAlgorithmArgGetDefaultAsStringList(GDALAlgorithmArgH); const int CPL_DLL *GDALAlgorithmArgGetDefaultAsIntegerList(GDALAlgorithmArgH, size_t *pnCount); const double CPL_DLL *GDALAlgorithmArgGetDefaultAsDoubleList(GDALAlgorithmArgH, size_t *pnCount); bool CPL_DLL GDALAlgorithmArgIsHidden(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgIsHiddenForCLI(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgIsHiddenForAPI(GDALAlgorithmArgH); #ifndef DOXYGEN_SKIP bool CPL_DLL GDALAlgorithmArgIsOnlyForCLI(GDALAlgorithmArgH) CPL_WARN_DEPRECATED("Use GDALAlgorithmArgIsHiddenForAPI() instead"); #endif bool CPL_DLL GDALAlgorithmArgIsInput(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgIsOutput(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetMutualExclusionGroup(GDALAlgorithmArgH); bool CPL_DLL GDALAlgorithmArgGetAsBoolean(GDALAlgorithmArgH); const char CPL_DLL *GDALAlgorithmArgGetAsString(GDALAlgorithmArgH); GDALArgDatasetValueH CPL_DLL GDALAlgorithmArgGetAsDatasetValue(GDALAlgorithmArgH); int CPL_DLL GDALAlgorithmArgGetAsInteger(GDALAlgorithmArgH); double CPL_DLL GDALAlgorithmArgGetAsDouble(GDALAlgorithmArgH); char CPL_DLL **GDALAlgorithmArgGetAsStringList(GDALAlgorithmArgH); const int CPL_DLL *GDALAlgorithmArgGetAsIntegerList(GDALAlgorithmArgH, size_t *pnCount); const double CPL_DLL *GDALAlgorithmArgGetAsDoubleList(GDALAlgorithmArgH, size_t *pnCount); bool CPL_DLL GDALAlgorithmArgSetAsBoolean(GDALAlgorithmArgH, bool); bool CPL_DLL GDALAlgorithmArgSetAsString(GDALAlgorithmArgH, const char *); bool CPL_DLL GDALAlgorithmArgSetAsDatasetValue(GDALAlgorithmArgH hArg, GDALArgDatasetValueH value); bool CPL_DLL GDALAlgorithmArgSetDataset(GDALAlgorithmArgH hArg, GDALDatasetH); bool CPL_DLL GDALAlgorithmArgSetDatasets(GDALAlgorithmArgH hArg, size_t nCount, GDALDatasetH *); bool CPL_DLL GDALAlgorithmArgSetDatasetNames(GDALAlgorithmArgH hArg, CSLConstList); bool CPL_DLL GDALAlgorithmArgSetAsInteger(GDALAlgorithmArgH, int); bool CPL_DLL GDALAlgorithmArgSetAsDouble(GDALAlgorithmArgH, double); bool CPL_DLL GDALAlgorithmArgSetAsStringList(GDALAlgorithmArgH, CSLConstList); bool CPL_DLL GDALAlgorithmArgSetAsIntegerList(GDALAlgorithmArgH, size_t nCount, const int *pnValues); bool CPL_DLL GDALAlgorithmArgSetAsDoubleList(GDALAlgorithmArgH, size_t nCount, const double *pnValues); /** Binary-or combination of GDAL_OF_RASTER, GDAL_OF_VECTOR, * GDAL_OF_MULTIDIM_RASTER, possibly with GDAL_OF_UPDATE. */ typedef int GDALArgDatasetType; GDALArgDatasetType CPL_DLL GDALAlgorithmArgGetDatasetType(GDALAlgorithmArgH); /** Bit indicating that the name component of GDALArgDatasetValue is accepted. */ #define GADV_NAME (1 << 0) /** Bit indicating that the dataset component of GDALArgDatasetValue is accepted. */ #define GADV_OBJECT (1 << 1) int CPL_DLL GDALAlgorithmArgGetDatasetInputFlags(GDALAlgorithmArgH); int CPL_DLL GDALAlgorithmArgGetDatasetOutputFlags(GDALAlgorithmArgH); /************************************************************************/ /* GDALArgDatasetValueH API */ /************************************************************************/ GDALArgDatasetValueH CPL_DLL GDALArgDatasetValueCreate(void); void CPL_DLL GDALArgDatasetValueRelease(GDALArgDatasetValueH); const char CPL_DLL *GDALArgDatasetValueGetName(GDALArgDatasetValueH); GDALDatasetH CPL_DLL GDALArgDatasetValueGetDatasetRef(GDALArgDatasetValueH); GDALDatasetH CPL_DLL GDALArgDatasetValueGetDatasetIncreaseRefCount(GDALArgDatasetValueH); void CPL_DLL GDALArgDatasetValueSetName(GDALArgDatasetValueH, const char *); void CPL_DLL GDALArgDatasetValueSetDataset(GDALArgDatasetValueH, GDALDatasetH); CPL_C_END #endif // GDAL_ALGORITHM_C_INCLUDED