Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
621 views

WMI Cheatsheet?

Is there a cheatsheet available for WMI? Like what can be queried, where to query it from?
4
votes
6answers
285 views

Developing for different platforms individually, does anyone recommend it?

I know it is easy to recommend several cross platform libraries. However, are there benefits to treating each platform individually for your product? Yes there will be some base libraries used in ...
3
votes
3answers
168 views

C corner case and trap

I am surprised why this works? short main [] ={}; This is the only content in the file. It compiles correctly on gcc. But when i run it prints segmentation fault. When i rename main, compiler ...
3
votes
3answers
166 views

Determining whether compiling on Windows or other system

Im currently developing a cross-platform C application. Is there any compiler macro which is defined only during compilation on Windows, so I can #ifdef some Windows specific #includes? Typical ...
3
votes
2answers
363 views

Referencing a platform-specific library from a non-specific .NET app

I often need to include little bits of native code in my C# apps, which I tend to do via C++/CLI. Usually I just need to use a C++ library for which there exists no good alternative for .NET; but ...
2
votes
2answers
159 views

Is a C .lib file platform specific?

I'm trying to use an API for a proprietary interface device on an embedded system (Freescale HCS08), and the provided files include headers (.h) and libraries (.lib). The header compiles fine with ...
1
vote
1answer
28 views

Are MO files platform specific?

I'm having some troubles getting gettext work on a Linux server. It works on my Windows machine. So one of the possible reasons I found is that MO files might be platform specific. In this article, ...
1
vote
0answers
27 views

Platform-specific differences in reading floating point numbers from ASCII file?

I have a program that reads in floating point numbers from an ASCII data file using the << operator. I have noticed that whenever there is a number that is very small but nonzero (absolute value ...
1
vote
2answers
748 views

C++ STL Map - find(pair<string,bool>) works in windows Visual Studio but not with g++ in Linux!

I seem to be having issues with using find() with the STL map on different platforms. Here is my code to be complete: #include <stdio.h> #include <stdlib.h> #include <iostream> ...
1
vote
1answer
102 views

Runtime or compile time for platform-specific libraries?

I'm creating a library in C++. It links against Windows libraries on Windows and Linux libraries on Linux. It's abstracted, all is well. However, is it feasible to dynamically detect, load and use ...
1
vote
1answer
571 views

C#/Mac: Path.GetInvalidPathChars() and Path.GetInvalidFileNameChars() result

What does this display on OSX? Can anyone run this on their machines using Mono? foreach (char c in System.IO.Path.GetInvalidPathChars()) { Console.Write((byte)c); Console.Write(", "); } and ...
1
vote
1answer
103 views

How do I determine which platform version is required?

This frequently comes up: I've built software, and possibly used some new language / platform / standard library features that are available on some version (say, Java 1.6.10 or PHP 5.2) upwards, but ...
0
votes
1answer
111 views

Notification icons for android platforms 1.5 - 3.2

My app targets Android 1.5 to 3.2 and I'm making notification icons specific to those platforms. I'm finding it difficult to correctly to organize the icons for all these versions, including h/d/ldpi ...