search for: extentries

Displaying 4 results from an estimated 4 matches for "extentries".

2007 Feb 05
2
Metapost device driver
...k on a MetaPost device driver (please don't hold your breath). I've copied the XFig driver and renamed everything and this works, I can open the new metapost() and it works exactly like the xfig driver. Now all I have to do is the actual work! Just one question. There is a magic number in ExtEntries as follows: static const R_ExternalMethodDef ExtEntries[] = { EXTDEF(PicTeX, 6), EXTDEF(PostScript, 16), EXTDEF(XFig, 11), EXTDEF(MetaPost, 12), /* Is 12 is OK */ EXTDEF(PDF, 13), I just picked 12, is this Ok, or does it have some special significance? Cheer...
2007 Feb 05
2
Metapost device driver
...k on a MetaPost device driver (please don't hold your breath). I've copied the XFig driver and renamed everything and this works, I can open the new metapost() and it works exactly like the xfig driver. Now all I have to do is the actual work! Just one question. There is a magic number in ExtEntries as follows: static const R_ExternalMethodDef ExtEntries[] = { EXTDEF(PicTeX, 6), EXTDEF(PostScript, 16), EXTDEF(XFig, 11), EXTDEF(MetaPost, 12), /* Is 12 is OK */ EXTDEF(PDF, 13), I just picked 12, is this Ok, or does it have some special significance? Cheer...
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
...} diff -ruN R-devel/src/library/utils/src/init.c R-devel-cov/src/library/utils/src/init.c --- R-devel/src/library/utils/src/init.c 2014-01-08 18:06:33.000000000 +0100 +++ R-devel-cov/src/library/utils/src/init.c 2014-03-03 16:16:00.667437192 +0100 @@ -74,6 +74,8 @@ static const R_ExternalMethodDef ExtEntries[] = { EXTDEF(download, 5), EXTDEF(unzip, 7), + EXTDEF(Rcov_start, 2), + EXTDEF(Rcov_stop, 0), EXTDEF(Rprof, 8), EXTDEF(Rprofmem, 3), diff -ruN R-devel/src/library/utils/src/utils.c R-devel-cov/src/library/utils/src/utils.c --- R-devel/src/library/utils/src/utils.c 2012-1...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...used.} } \details{ diff --git a/src/library/utils/src/init.c b/src/library/utils/src/init.c index ebbaf1054a..785347b772 100644 --- a/src/library/utils/src/init.c +++ b/src/library/utils/src/init.c @@ -74,9 +74,9 @@ static const R_CallMethodDef CallEntries[] = { static const R_ExternalMethodDef ExtEntries[] = { #ifdef Win32 - EXTDEF(download, 6), + EXTDEF(download, 7), #else - EXTDEF(download, 5), + EXTDEF(download, 6), #endif EXTDEF(unzip, 7), EXTDEF(Rprof, 8), diff --git a/src/library/utils/tests/download.file.R b/src/library/utils/tests/download.file.R new file mode 10064...