diff options
author | Bert Vermeulen <bert@biot.com> | 2013-09-11 12:35:17 +0200 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2013-10-14 10:43:10 +0200 |
commit | 1f2e00d140ac41a3a61888f67fc6f96c4369bea3 (patch) | |
tree | ef74ce33ac726021d81a39be545cb8fe4e13abc8 /controller.c | |
parent | 6fd278bac7d10e967e708171e2b3aa8b3382a2ff (diff) | |
download | libsigrokdecode-1f2e00d140ac41a3a61888f67fc6f96c4369bea3.tar.gz libsigrokdecode-1f2e00d140ac41a3a61888f67fc6f96c4369bea3.zip |
Code cleanup
Diffstat (limited to 'controller.c')
-rw-r--r-- | controller.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/controller.c b/controller.c index 9267ded..276dc2d 100644 --- a/controller.c +++ b/controller.c @@ -98,7 +98,6 @@ static GSList *callbacks = NULL; extern SRD_PRIV GSList *pd_list; /* module_sigrokdecode.c */ -/* FIXME: SRD_PRIV causes issues on MinGW. Investigate. */ extern PyMODINIT_FUNC PyInit_sigrokdecode(void); /* type_logic.c */ @@ -254,21 +253,6 @@ SRD_PRIV int srd_decoder_searchpath_add(const char *path) g_string_free(new_path, TRUE); g_free(wc_new_path); -//#ifdef _WIN32 -// gchar **splitted; -// -// /* -// * On Windows/MinGW, Python's sys.path needs entries of the form -// * 'C:\\foo\\bar' instead of '/foo/bar'. -// */ -// -// splitted = g_strsplit(DECODERS_DIR, "/", 0); -// path = g_build_pathv("\\\\", splitted); -// g_strfreev(splitted); -//#else -// path = g_strdup(DECODERS_DIR); -//#endif - return SRD_OK; } |