similar to: Any header needed for COM interface?

Displaying 20 results from an estimated 6000 matches similar to: "Any header needed for COM interface?"

2002 May 25
2
Function objects as arguments of a function
Hello, R users. In C (or C++) language, a function can be used as an argument of another function as follows: // function used as an argument void foo(int x) { ... } // function using a function as an argument void bar(void (*func)(int ), int arg1, int arg2) { .... } // The function 'bar' will be called as follows int main() { .... bar(foo, arg4foo, other_arg);
2001 Feb 27
1
RCMD Beginner
Hi, R-users. I tried to install the 'RODBC' package by input C:\R>RCMD install RODBC_0_8-2_tar.tar , but I got the message 'Error: cannot change to directory 'RODBC_0_8-2_tar.tar' ' and failed to install. The file 'tar32.dll' lies in the system directory. How can I install the package above mentioned? OS:Win95 R_HOME:c:\R\rw1020 >From Kobe,
2002 Jan 19
0
Troubles in SJava
OS : Win95 R Version : 1.4.0 JDK Version : 1.3.0 Hi, R-statisticians all over the world. I'm trying to handling R objects in the Java code as follows: [c:\myjava\R2JTest.java] import org.omegahat.R.Java.*; class R2JTest { public static void main(String args[]) { REvaluator e = new REvaluator(); Object val = e.eval("objects()"); int i;
2001 Feb 11
3
Scatter plot calling R function from C
Dear R users, I want to create a C program drawing a scatter plot with R functions. Is it possible to do such a thing with interfaces declared in 'Rgraphics.h'? If so, I would like to get sample C sources. >From a user in Japan. Thanks, -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read
2004 Sep 10
0
Re: Flac-dev digest, Vol 1 #235 - 1 msg
> I saw this come across the wire today...freecraft appears to be some kind= of > RPG, which seems to have recently started to use FLAC in some way. I hav= e Its a nice almost-clone of the progenitor of the latest wave of real time strategy games, Warcraft II. Britton > not investigated this any further, but I thought it might interest member= s > of this list to know of new usage
2005 Oct 26
1
Borland C++ and [R] dyn.load() for windows
Hi, I compiled a C program file on Borland C++ 5.5 compiler to get one dll output (as instructed in the file readme.package). The C program file is just the example on page 31 of "writing R extensions": void convolve(double *a, int *na, double *b, int *nb, double *ab) { int i, j, nab = *na + *nb - 1; for(i = 0; i < nab; i++) ab[i] = 0.0; for(i = 0; i < *na; i++) for(j = 0; j
2003 Jul 08
2
OMF static LIBs for Borland ?
Hi, I have a problem and I hope that someone, possibly someone from Vorbis developing team, could help me out. My question is: "Are there OggVorbis static libraries in OMF format that can be statically linked to a Borland C++ Builder compiled applications?" Static LIBs that I found in Vorbis Win32 SDK are in COFF format, and therefore I was only able to link dynamically to DLLs.
2006 Jan 12
0
Problem compiling testenc.c on WinXP(newbie)
I have no problems compiling with Borland compiler (in fact it helped uncover a couple of math issues during run-time). I use BDS 2006. What's happening in your case is that the Speex itself is not linked in. I suggest you create a library out of the C sources and link it in with your test app. HTH, .a -----Original Message----- From: speex-dev-bounces@xiph.org
2006 Jan 12
1
Problem compiling testenc.c on WinXP(newbie)
Hello, I want to compile testenc.c with Borland C/C++ compiler, but get a lot of errors. What's wrong? Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland testenc.c: Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland Error: Unresolved external '_speex_encoder_init' referenced from D:\SPEEX\TESTENC.OBJ Error: Unresolved external '_speex_decoder_init'
2006 Mar 25
0
Access Violation running an application calling Borland libraries vcljpg60.bpl & vcl60.bpl
Access Violation running an application calling Borland libraries vcljpg60.bpl, vcl60.bpl. I am using Wine 0.9.10 and Mandriva LE2005. Although I can run several windows application successfully, I have never been able to run one - Heredis8 - that seems to be using Borland libraries (vcljpg60.bpl, vcl60.bpl, and others). The output from running "winedbg Heredis8.exe" is below. There
2009 Jan 22
6
Application will only run when executed from its directory
Hi everyone! I am running Wine 1.0 on Linux Mint 5.1. I have a custom developed program that was designed in Delphi using the Borland Database library that will only run correctly if executed from the directory it is contained in. It will not run from the start menu nor will it run from a launcher that I have built on the Desktop. I figure it has to be something with the path referencing. I
2001 Sep 28
0
Borland compiler issues
Where can I download stable RC2 source code? I've downloaded the nightly CVS, but it seems unusable right now. The Windows SDK does not appear to include source code or Borland compatible libraries. One thing I've noticed about the nightly CVS code is that the nested alloca() calls seem to confuse Borland's compiler. I had to change code in mapping0_forward() from:
2001 Apr 05
2
Borland C++-5.5 (free) compiler does not install(?)
Hello! I'm trying to install Borland C++ 5.5 free compiler into my RH7 Linux box but I can't get it to work. Running the installer brings a blank dialog with "Prev", "Next" and "Cancel" buttons but nothing more.. and pressing the buttons doesn't do anything and the dialog doesn't close. I waited for more than 15 minutes (I read it in FAQ
2001 Feb 22
1
Borland C++ 5 patch 1 and wine
Hy, I'am trying to compile a little project with Borland C++ 5 on my redhat 7.0 box with the rpm package from linux-easy for wine. The IDE is working correctly, compilation goes ok but when comes time to link all object files together Borland c++ stop to work. I tried to export project file and do a make, it is the same problem ilink32.exe seems to hang.... Thanks for help Jean-Francois
2017 Apr 27
3
recognise DW_AT_SUN_amd64_parmdump dwarf attribute
sun created this tag for identifying functions that dumped their register arguments onto the stack. this is enough for llvm-dwarfdump to recognise and print the attribute. hopefully someone will commit it. cheers, dlg Index: include/llvm/Support/Dwarf.def =================================================================== --- include/llvm/Support/Dwarf.def (revision 301500) +++
2006 Feb 02
1
Borland Database Engine related installer issue (Portal GT-D)
I am attempting to install the Portal GT-D mud client (www.gameaxle.com) on top of wine-0.9.6-1.fc4 which I then reconfigured using winetools-0.9-3jo after failing to install MS Office XP Pro (which I never did get to work either, but I found some references saying that it wasn't likely to). IE6 installed and runs for what it is worth. I run the setup program in the style the wine tools use
2013 Mar 28
2
[LLVMdev] [cfe-dev] Handling SRet on Windows x86
Chandler Carruth <chandlerc at google.com> writes: >> And here there is no "Windows ABI" here at all. Because every compiler >> (MSVC, gcc / clang, Borland) does its own stuff. This is why I said >> that the proposal naming is confusing. >> > > I don't know anything about Borland, and I don't think that matters. But I > think that the
2013 Mar 28
0
[LLVMdev] [cfe-dev] Handling SRet on Windows x86
John Smith <lbalbalba at gmail.com> writes: > Forgive me from intruding here, but ... > > whats wrong with isTargetWin32-MSVC-win32, > isTargetWin32-mingw32-win32, isTargetWin32-borland-win32, > isTargetWin32-cygwin-win32, etc. > > Judging by the responses, there seems to be a need for that. Which > leaves the point of what should be 'the default', which
2017 Jul 07
0
Eaton PW9130 1500VA-T with netxml-ups driver
Hello, I have some questions about netxml-ups driver. My UPS: Eaton PW9130 1500VA-T with Network Management Card. OS: Fedora 24 NUT 2.7.4 (from fedoraproject repo) Driver: netxml-ups. Results of upsc: ambient.humidity.high: 90 ambient.humidity.low: 5 ambient.temperature.high: 40 ambient.temperature.low: 5 battery.charge: 100 battery.charge.low: 20 battery.charge.restart: 0 battery.runtime: 69012
2017 Apr 27
3
recognise DW_AT_SUN_amd64_parmdump dwarf attribute
> On Apr 27, 2017, at 8:38 AM, David Blaikie <dblaikie at gmail.com> wrote: > > This'll need a test case, in any case. In case you're wondering, one way to do this would be to add an assembler source file, compile it and run it through llvm-dwarfdump. Alternatively you can use the new yaml2obj tool that is being developed. -- adrian > > Adrian/Paul: Pondering