¡@

Home 

c++ Programming Glossary: platform

Finding current executable's path without /proc/self/exe

http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe

find the current application's directory in C C with cross platform interfaces. I've seen some projects mucking around with argv.. proc what would you have done Use #ifdefs to isolate the platform specific code NSBundle for example Or try to deduce the executable's..

System(“pause”); - Why is it wrong?

http://stackoverflow.com/questions/1107705/systempause-why-is-it-wrong

improve this question It's frowned upon because it's a platform specific hack that has nothing to do with actually learning..

Programmatically find the number of cores on a machine

http://stackoverflow.com/questions/150355/programmatically-find-the-number-of-cores-on-a-machine

way to determine how many cores a machine has from C in a platform independent way If no such thing exists what about determining.. way If no such thing exists what about determining it per platform Windows nix Mac c multicore share improve this question ..

Is “for(;;)” faster than “while (TRUE)”? If not, why do people use it?

http://stackoverflow.com/questions/2611246/is-for-faster-than-while-true-if-not-why-do-people-use-it

If you really care compile with assembler output for your platform and look to see. It doesn't matter. This never matters. Write..

How to use Boost in Visual Studio 2010

http://stackoverflow.com/questions/2629421/how-to-use-boost-in-visual-studio-2010

Manager and expand one of the configuration for the platform of your choice. Select right click Microsoft.Cpp. Platform .user.. to your boost source files. Repeat steps 3 6 for different platform of your choice if needed. If you want to use the part of boost.. . Start the Visual Studio Command Prompt for the platform of your choice and navigate to where boost is. Run bootstrap.bat..

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

http://stackoverflow.com/questions/331536/windows-threading-beginthread-vs-beginthreadex-vs-createthread-c

functions I'm working with a windows application so cross platform computability is already out of the question. I have gone through..

Finding C++ static initialization order problems

http://stackoverflow.com/questions/335369/finding-c-static-initialization-order-problems

there's a static analysis tool that would catch this. Our platform is IBM XLC C compiler running on AIX. c initialization static..

When and why will an OS initialise memory to 0xCD, 0xDD, etc. on malloc/free/new/delete?

http://stackoverflow.com/questions/370195/when-and-why-will-an-os-initialise-memory-to-0xcd-0xdd-etc-on-malloc-free-new

free delete work in the same way with regard to this Is it platform specific Will it occur on other operating systems such as Linux..

What is the bit size of long on 64-bit Windows?

http://stackoverflow.com/questions/384502/what-is-the-bit-size-of-long-on-64-bit-windows

for the sizes of integers and pointers for 64 bit platforms. The two mostly widely used were ILP64 actually only a very.. a different set of revisions from the ones needed on Unix platforms. If you design your software around platform neutral integer.. on Unix platforms. If you design your software around platform neutral integer type names probably using the C99 inttypes.h..

C/C++: Capture characters from standard input without waiting for enter to be pressed

http://stackoverflow.com/questions/421860/c-c-capture-characters-from-standard-input-without-waiting-for-enter-to-be-pr

I would recommend you to use curses if you aim for cross platform compatibility. That said I'm sure there are functions that you..

Open source PDF library for C/C++ application? [closed]

http://stackoverflow.com/questions/58730/open-source-pdf-library-for-c-c-application

share improve this question LibHaru Haru is a free cross platform open sourced software library for generating PDF written in..

WChars, Encodings, Standards and Portability

http://stackoverflow.com/questions/6300804/wchars-encodings-standards-and-portability

same source and get a working result on every supported platform but the binary representation may be totally different or not..

Why simple console app runs but dialog based does not run in WIN CE 6.0?

http://stackoverflow.com/questions/10959134/why-simple-console-app-runs-but-dialog-based-does-not-run-in-win-ce-6-0

that eVC 4.0 used mfcce400.dll which did not ship with Platform Builder 6.0 at all in fact IIRC MFC isn't even in the CE 6.0..

C++ Cross-Platform High-Resolution Timer

http://stackoverflow.com/questions/1487695/c-cross-platform-high-resolution-timer

Cross Platform High Resolution Timer I'm looking to implement a simple timer..

How to compile a 64-bit application using Visual C++ 2010 Express?

http://stackoverflow.com/questions/1865069/how-to-compile-a-64-bit-application-using-visual-c-2010-express

sure that selects All Configurations. There will also be a Platform drop down that will read Win32. Finally on the right there is.. it. In the dialog that comes up find your project hit the Platform drop down select New then select x64. Now change the Active.. to x64. When you return to the Properties dialog box the Platform drop down should now read x64. Finally change your toolset...

The C `clock()` function just returns a zero

http://stackoverflow.com/questions/2134363/the-c-clock-function-just-returns-a-zero

cpu_time_used 0.000000000000000 CLOCKS_PER_SEC 1000000 Platform Intel 32 bit RedHat Linux gcc 3.4.6 c c time clock share..

Is there a LINQ library for C++?

http://stackoverflow.com/questions/232222/is-there-a-linq-library-for-c

there a LINQ library for C Are there any Platform agnostic not CLI movements to get LINQ going for C in some fashion..

How to use Boost in Visual Studio 2010

http://stackoverflow.com/questions/2629421/how-to-use-boost-in-visual-studio-2010

platform of your choice. Select right click Microsoft.Cpp. Platform .user and select Properties to open the Property Page for edit...

fastest (low latency) method for Inter Process Communication between Java and C/C++

http://stackoverflow.com/questions/2635272/fastest-low-latency-method-for-inter-process-communication-between-java-and-c

Solace Systems announced today that its Unified Messaging Platform API can achieve an average latency of less than 700 nanoseconds..

what's the easiest way to generate xml in c++?

http://stackoverflow.com/questions/303371/whats-the-easiest-way-to-generate-xml-in-c

seems it's purpose was to just to persist a class's state. Platform linux What do you guys use to generate NOT parse xml So far..

Using Visual Studio project properties effectively for multiple projects and configurations

http://stackoverflow.com/questions/3502530/using-visual-studio-project-properties-effectively-for-multiple-projects-and-con

' Configuration ' 'Debug' DebugSuffix platform ShortPlatform Condition ' Platform ' 'Win32' x86 ShortPlatform ShortPlatform.. ' 'Debug' DebugSuffix platform ShortPlatform Condition ' Platform ' 'Win32' x86 ShortPlatform ShortPlatform Condition ' Platform.. ShortPlatform Condition ' Platform ' 'Win32' x86 ShortPlatform ShortPlatform Condition ' Platform ' 'x64' x64 ShortPlatform..

Convert bitmap to PNG in-memory in C++ (win32)

http://stackoverflow.com/questions/366768/convert-bitmap-to-png-in-memory-in-c-win32

in memory i.e. without writing to a file using only the Platform SDK i.e. no libpng etc. . I also want to be able to define a..

Visual Studio 2010 & 2008 can't handle source files with identical names in different folders?

http://stackoverflow.com/questions/3729515/visual-studio-2010-2008-cant-handle-source-files-with-identical-names-in-diff

are added ObjectFileName Condition ' Configuration Platform ' 'Release x64' IntDir Filename 1.obj ObjectFileName XMLDocumentationFileName.. XMLDocumentationFileName Condition ' Configuration Platform ' 'Release x64' IntDir Filename 1.xdc XMLDocumentationFileName.. Note that I also selected All Configurations All Platforms from the drop downs. This will compile every file in a directory..

How do I link to a library with Code::Blocks?

http://stackoverflow.com/questions/5862757/how-do-i-link-to-a-library-with-codeblocks

libs you will need to download the Microsoft Windows Platform SDK. To link with gdi32 This will reliably work with MinGW gcc..

C++, C# and JavaScript on WinRT [closed]

http://stackoverflow.com/questions/7466303/c-c-sharp-and-javascript-on-winrt

and JavaScript on WinRT closed From image below Windows 8 Platform and tools. I know this mean I can use C C# or JavaScript for..

Fast Cross-Platform C/C++ Image Processing Libraries

http://stackoverflow.com/questions/796364/fast-cross-platform-c-c-image-processing-libraries

Cross Platform C C Image Processing Libraries What are some cross platform..

C++ Editor, Compiler, Debugger on Windows ( Lighter than Visual Studio)

http://stackoverflow.com/questions/89924/c-editor-compiler-debugger-on-windows-lighter-than-visual-studio

Editor Compiler Debugger I'm taking you want an IDE Multi Platform Code Blocks Eclipse CDT Emacs Technically a text editor but..