Displaying 5 results from an estimated 5 matches for "endregion".
Did you mean:
ndregion
2010 Mar 30
1
GUI /IDE
Does anyone know of a gui for R that has "regions" i.e areas of code in a
script that can be named and hopefully run as a section?
@region Init
library(whatever)
myprint<-function(...){print(...)}
@endregion
--
View this message in context: http://n4.nabble.com/GUI-IDE-tp1745858p1745858.html
Sent from the R help mailing list archive at Nabble.com.
2006 Nov 27
1
R.DLL mapping by P/Invoke
...cl,*/ CharSet = CharSet.Ansi)]
static extern IntPtr Rf_findVar(IntPtr symbol, IntPtr env);
[DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)]
static extern void Rf_setVar(IntPtr symbol, IntPtr value, IntPtr env);
#endregion
#region <R.DLL interop types>
enum RParseStatus
{
PARSE_NULL,
PARSE_OK,
PARSE_INCOMPLETE,
PARSE_ERROR,
PARSE_EOF
};
enum SaType
{
SA_NORESTORE = 0,/* = 0 *...
2007 Oct 17
0
Using R.dll in .NET IPC
...cl,*/ CharSet = CharSet.Ansi)]
static extern IntPtr Rf_findVar(IntPtr symbol, IntPtr env);
[DllImport("R.DLL", /*CallingConvention = CallingConvention.Cdecl,*/ CharSet = CharSet.Ansi)]
static extern void Rf_setVar(IntPtr symbol, IntPtr value, IntPtr env);
#endregion
#region <R.DLL interop types>
enum RParseStatus
{
PARSE_NULL,
PARSE_OK,
PARSE_INCOMPLETE,
PARSE_ERROR,
PARSE_EOF
};
enum SaType
{
SA_NORESTORE = 0,/* = 0 *...
2007 Feb 09
1
speex in C# please help
...de;
public IntPtr query;
public char *modename;
public int modeid;
public int bitstream_version;
public IntPtr enc_init;
public IntPtr enc_destroy;
public IntPtr enc;
public IntPtr dec_init;
public IntPtr dec_destroy;
public IntPtr dec;
public IntPtr enc_ctl;
public IntPtr dec_ctl;
}
#endregion
#region Exported Methods
[DllImport(libpath)]
public static extern void *speex_encoder_init(ref SpeexMode modein);
[DllImport(libpath,EntryPoint="speex_lib_get_mode")]
public static extern IntPtr speex_lib_get_mode (int modein);
[DllImport(libpath)]
public static extern int speex_e...
2007 Feb 13
1
Re: Speex-dev Digest, Vol 33, Issue 10
...m_version;
>
> public IntPtr enc_init;
>
> public IntPtr enc_destroy;
>
> public IntPtr enc;
>
> public IntPtr dec_init;
>
> public IntPtr dec_destroy;
>
> public IntPtr dec;
>
> public IntPtr enc_ctl;
>
> public IntPtr dec_ctl;
>
> }
>
> #endregion
>
> #region Exported Methods
>
> [DllImport(libpath)]
>
> public static extern void *speex_encoder_init(ref SpeexMode modein);
>
> [DllImport(libpath,EntryPoint="speex_lib_get_mode")]
>
> public static extern IntPtr speex_lib_get_mode (int modein);
>
>...