Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
43b7982b
Kaydet (Commit)
43b7982b
authored
Ock 09, 2017
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1350 from kugel-/for-upstream
api: rework GeanyProxyProbeResults compat symbols as defines
üst
4780b2a8
129389c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
plugindata.h
src/plugindata.h
+15
-15
No files found.
src/plugindata.h
Dosyayı görüntüle @
43b7982b
...
...
@@ -345,29 +345,17 @@ void geany_plugin_set_data(GeanyPlugin *plugin, gpointer data, GDestroyNotify fr
*/
typedef
enum
{
/** @deprecated Use GEANY_PROXY_IGNORE instead.
* @since 1.26 (API 226)
*/
PROXY_IGNORED
,
/** @deprecated Use GEANY_PROXY_MATCH instead.
* @since 1.26 (API 226)
*/
PROXY_MATCHED
,
/** @deprecated Use GEANY_PROXY_RELATED instead.
* @since 1.26 (API 226)
*/
PROXY_NOLOAD
=
0x100
,
/** The proxy is not responsible at all, and Geany or other plugins are free
* to probe it.
*
* @since 1.29 (API 229)
**/
GEANY_PROXY_IGNORE
=
PROXY_IGNORED
,
GEANY_PROXY_IGNORE
,
/** The proxy is responsible for this file, and creates a plugin for it.
*
* @since 1.29 (API 229)
*/
GEANY_PROXY_MATCH
=
PROXY_MATCHED
,
GEANY_PROXY_MATCH
,
/** The proxy is does not directly load it, but it's still tied to the proxy.
*
* This is for plugins that come in multiple files where only one of these
...
...
@@ -378,10 +366,22 @@ typedef enum
*
* @since 1.29 (API 229)
*/
GEANY_PROXY_RELATED
=
PROXY_MATCHED
|
PROXY_NOLOAD
GEANY_PROXY_RELATED
=
GEANY_PROXY_MATCH
|
0x100
}
GeanyProxyProbeResults
;
/** @deprecated Use GEANY_PROXY_IGNORE instead.
* @since 1.26 (API 226)
*/
#define PROXY_IGNORED GEANY_PROXY_IGNORE
/** @deprecated Use GEANY_PROXY_MATCH instead.
* @since 1.26 (API 226)
*/
#define PROXY_MATCHED GEANY_PROXY_MATCH
/** @deprecated Use GEANY_PROXY_RELATED instead.
* @since 1.26 (API 226)
*/
#define PROXY_NOLOAD 0x100
/** Hooks that need to be implemented by every proxy
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment