forked from enlightenment/edi
3 changed files with 52 additions and 1 deletions
@ -0,0 +1,43 @@
|
||||
#ifdef HAVE_CONFIG_H |
||||
# include "config.h" |
||||
#endif |
||||
|
||||
#include <Eina.h> |
||||
|
||||
#include "edi_language_provider.h" |
||||
|
||||
#include "edi_config.h" |
||||
|
||||
#include "edi_private.h" |
||||
|
||||
void |
||||
_edi_language_csharp_add(Edi_Editor *editor EINA_UNUSED) |
||||
{ |
||||
} |
||||
|
||||
void |
||||
_edi_language_csharp_refresh(Edi_Editor *editor EINA_UNUSED) |
||||
{ |
||||
} |
||||
|
||||
void |
||||
_edi_language_csharp_del(Edi_Editor *editor EINA_UNUSED) |
||||
{ |
||||
} |
||||
|
||||
const char * |
||||
_edi_language_csharp_mime_name(const char *mime) |
||||
{ |
||||
if (!strcasecmp(mime, "text/x-csharp")) |
||||
return _("C# source"); |
||||
|
||||
return NULL; |
||||
} |
||||
|
||||
const char * |
||||
_edi_language_csharp_snippet_get(const char *key) |
||||
{ |
||||
(void) key; |
||||
return NULL; |
||||
} |
||||
|
Loading…
Reference in new issue