library

How to use C# object from F#?

I have the following C# code. namespace MyMath { public class Arith { public Arith() {} public int Add(int x, int y) { return x + y; } } } And I came up with the F# code named testcs.fs to use this object. open MyMath.Arith let x = Add(10,20) When I run the following command fsc -r:MyMa...

What do the terms platform and framework refer to?

Hi, I ran into this question many times ago and have seen the terms again and didn't know their real concept in computer engineering. What do platform and framework refer to? I see many terms like platform-independent and development platforms, and also same for frameworks, but i can't quietly understand them. Do they refer to librarie...

Is cl-opengl glut mature?

I want to create my own editor to code in, at first I was going to use ncurses to make a terminal editor. Not working, the library has no documentation and it's mail list is completely empty. I'm probably going to make it with a gui library instead. I'm thinking of just using glut from cl-opengl, but I can't find any info on how develope...

Multiple dynamic libraries with the same static variables, how many instances?

Let me explain it with an example: I have a class S, which is static. I have two dynamic libraries A and B that use S. I have an application, that links with A and B, in this application, how many different instances of S are created? All this using C++ and in Ubuntu. Thanks in advance ...

How to compile liboauth for windows

Anyone successfully compiled liboauth(http://liboauth.sourceforge.net/) for Windows? Any help here much appreciated. ...

fatal error LNK1127: library is corrupt --> after adding extern "C" to function prototype

Hi all, I have an external library made using C code. I wish to call a function from the library in my c++ project. The original format of the function prototype was. extern void butterThreeBp(real_T eml_dt, real_T eml_fl, real_T eml_fu, real_T eml_b3[7], real_T eml_a3[7]); And this caused the following linker error in MSVC2008 error...

Standalone C++ websocket server library

Hi, I'd like to create a websocket server within one of my C++ programs. Do any standalone C++ libraries exist for creating websockets or is the only option to get the WebKit or V8 sources and extract their implementation? ...

OSX Port Python Library Path? Cant find ctypes

I am trying to use an application that has a dependency of ctypes, but am getting this error: $ python peach.py -t ~/Desktop/fuzz/wav/template.xml ] Peach 2.3.6 Runtime ] Copyright (c) Michael Eddington Traceback (most recent call last): File "peach.py", line 335, in <module> from Peach.Engine import * File "/opt/Peach-2.3.6/...

OCX library with C# (ActiveX library)

Hi, whats the simplest way to make ocx library working in c#? (I'm using wpf project) I tried to use aximp, but when creating Ax[libname]Lib.Ax[libname] object, calling getocx() returns null. EDIT: I should add, that this lib is for communicating with some specific driver ...

[GENERAL] Suggestion for graphics library for 2D game (PC)

Hello. I'm trying to set base to a 2D game with destructible terrain and/or particle effects, scroll, zoom, characters, etc... I'd like to know if there is a graphics library that would support those things in both software and hardware acceleration .. (Need pixel access). I've tried SDL (even with directX backend), but it seems hardware...

recommend php library for parsing and modifying dom

i have to modify dom. i.e. remove few elements and add few. kindly recommend any php library that can parse and modify DOM. ...

Create a library of AS3 components for Flash

I am looking to build a set of components for Flash that our developers can use throughout future projects. The components are not covered by the standard set of Flash UI components and I don;t think I need to really extend the UI Interface. Instead I would like to be able to distribute a library of FLA (non-compiled) components so that...

Looking for simple 3D Java lib

Problem: I have to plot a simple 3D graph/diagram with x,y,z coordinates given for some points. My goal is to export this 3D diagramm to svg -> I will have to make a projection as svg is not (yet) able to handle 3D. So my input is a 3D diagramm with x,y,z coordinates and the output is a 2D view reduced to x,y coordinates. Does anyone ...

VC++ 2010 exclude library

A project I'm building is attempting to include a library, but for the life of me I can't find out the call to include it is coming from. It's trying to include atlthunk.lib, which is supposed to be included through a #pragma comment in atlbase.h, but there's no such comment in my atlbase.h. I read about someone else who had this proble...

How to manipulate EPS files in Java?

Hi, I am looking for an EPS library in Java. Our application generate images in different format on the server and we plan to add EPS support. I'd like the EPS library to be able to superimpose 2 images; foreground and background. I did a quick search and the libraries I found do not seem ready for prime time. Any recommendations? Thank...

Compiling the objective C library

Hi! This is my first time posting here. I'm a comp sci student attempting to do some things that might be a little over my head: I'm attempting to add some logging to the object_cxxDestruct function within the objective c library (objc4-437.1 specifically). I've tried subclassing dealloc, but things like NSAutoReleasePools seem to fall t...

How to find version of a static lib *.a ?

Is there a terminal command which I can use to see the version of a static library (*.a) on my Mac? ...

Custom uses-library for our own system app

Hi, I need to make a system library (will be embedded in the system image on some phones). It needs to be used with the "uses-library" feature. (just like Sprint created such a system library for their Evo 4G front-facing camera support) My question is: - How can I create such a project? (I'll need to create a stub to link against and ...

JSON "flat" serialization with Java

Hey guys, I am looking for a JSON library that supports defining the serialization depth. Ideally I would like a library that handles all primitive types and java.lang and the rest will be sent to a custom handler. In my case the custom handler should generate a Link object with URL and class of the element (for my REST API). Here an ...

.Net Lib\Wrapper that would clear differences between ATI and Nvidea APIs for counting on GPU?

I want to use GPU for counting purposes. I need it to fall on to CPU if no GPU found and provide me with unified api. (interested in any .net for example №4) ...