Displaying 6 results from an estimated 6 matches for "r_externalmethoddef".
2007 Feb 05
2
Metapost device driver
...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?
Cheers,
Geoff Russell.
2007 Feb 05
2
Metapost device driver
...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?
Cheers,
Geoff Russell.
2013 Mar 09
5
question on why Rigroup package moved to Archive on CRAN
Hi,
Who should I ask about my package Rigroup_0.83 being moved to Archive status on CRAN and no longer available via install.package? I have no problems with the move if this was simply because of low demand. However, if there was a build issue with the newest releases that caused problems, I would be happy to address it. I'll just ask my students to install it from my own locally hosted
2007 Mar 19
3
Rinternals.h and undefined symbols
Hi,
I'm trying to register my native routines using R_registerRoutines
(...). I can compile the code, but the loader cannot resolve the symbol:
undefined symbol:
_Z18R_registerRoutinesP8_DllInfoPK12R_CMethodDefPK15R_CallMethodDefS3_S6
_
$ nm bgx.Rcheck/bgx/libs/bgx.so | grep R_registerRoutines
U
_Z18R_registerRoutinesP8_DllInfoPK12R_CMethodDefPK15R_CallMethodDefS3_S6
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
...rnal(C_Rcov_stop))
+}
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/uti...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...nts to be passed, unused.}
}
\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...