Displaying 1 result from an estimated 1 matches for "7636c1c2".
Did you mean:
763612
2012 Sep 09
0
Different behavior of the "showArgs" example (R extension manual) between gcc and Visual C++ compiled code
...005: Access violation writing location 0x0009eee9." with a call stack as follow. I did check that the cdecl calling convention is used.
R.dll!6c799419()
[Frames below may be incorrect and/or missing, no symbols loaded for R.dll]
R.dll!6c797736()
user32.dll!7633cd90()
user32.dll!7636c1c2()
Rgraphapp.dll!63551cba()
CODE
====
// R code
library(showArgs)
blah = as.Date('2000-01-01')
printArgs(a=1:3, b=LETTERS[1:3], blah=blah)
// END R code
// C/Cpp code:
extern "C" { // because I compile the code 'as C++' for Visual C++, for in-code variable declarati...