¡@

Home 

c++ Programming Glossary: exe

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

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

current executable's path without proc self exe It seems to me that Linux.. current executable's path without proc self exe It seems to me that Linux has it easy with proc self exe. But.. exe It seems to me that Linux has it easy with proc self exe. But I'd like to know if there is a convenient way to find the..

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

But when I create a dialog based project WCE MFC AppWizard exe and put this code in main class of my project before the initialization.. these features and wish to reduce the size of your final executable you should remove from the following the specific initialization..

Get path of executable

http://stackoverflow.com/questions/1528298/get-path-of-executable

path of executable I know this question has been asked before but I still.. All I want to do is get the path to the currently running executable either as an absolute path or relative to where the executable.. either as an absolute path or relative to where the executable is invoked from in a platform independent fashion. I..

Can I use Visual Studio 2010's C++ compiler with Visual Studio 2008's C++ Runtime Library?

http://stackoverflow.com/questions/2484511/can-i-use-visual-studio-2010s-c-compiler-with-visual-studio-2008s-c-runtim

presto no EncodePointer DecodePointer references in the exe use32 format ms coff section .data data public __imp__DecodePointer@4..

How to force my application to open one exe only? qt, linux

http://stackoverflow.com/questions/4087235/how-to-force-my-application-to-open-one-exe-only-qt-linux

to force my application to open one exe only qt linux I want my application to open only one process.. process is already opened and the user want to open the exe again it won't open another process. how can I do it in Qt linux..

Why/when is __declspec( dllimport ) not needed?

http://stackoverflow.com/questions/4489441/why-when-is-declspec-dllimport-not-needed

not needed In a project using a server.dll and a client.exe I have dllexport ed a server symbol from the server dll and.. the server dll and not dllimport ed it into the client exe. Still the application links and starts without any problem... server.cpp CServer CServer long CServer s and this client executable #include server.h int main CServer s The server command..

C++ - Forward declaration

http://stackoverflow.com/questions/4757565/c-forward-declaration

is joining with the one that uses add to produce a dll or exe. It's possible that the linker may get the wrong add. Say you..

Sharing a global/static variable between a process and DLL

http://stackoverflow.com/questions/4911994/sharing-a-global-static-variable-between-a-process-and-dll

a process and a dll that is invoked by the process. The exe and dll are in the same memory address space. I don't want the.. there is a static global variable x in a.cpp . Both the exe foo.exe and the dll bar.dll have a.cpp so the variable x is.. is a static global variable x in a.cpp . Both the exe foo.exe and the dll bar.dll have a.cpp so the variable x is in both..

App does not run with VS 2008 SP1 DLLs, previous version works with RTM versions

http://stackoverflow.com/questions/59635/app-does-not-run-with-vs-2008-sp1-dlls-previous-version-works-with-rtm-versions

in it gets the following error c Program Files ... ... X.exe This application has failed to start because the application.. Edit Just for grins I downloaded and ran the vcredist_x86.exe for VS2008SP1 on my test machine. It works. With the SP1 DLLs... d10resourceeditor.htm . Open every dll and exe in your solution. Look under 'XP Theme Manifest'. Check that..

Building multiple executables with similar rules

http://stackoverflow.com/questions/7123431/building-multiple-executables-with-similar-rules

multiple executables with similar rules I am writing something like an interactive.. user_created_add.cpp also needs to be compiled. Produce an executable for each lesson. Running scons in even_or_odd or scons.. or scons even_or_odd in all_lessons should produce an executable identical to the one above same compile flags . Summary..

how to find the location of the executable in C

http://stackoverflow.com/questions/933850/how-to-find-the-location-of-the-executable-in-c

to find the location of the executable in C Is there a way in C C to find the location full.. a way in C C to find the location full path of the current executed program The problem with argv 0 is that it does not give.. really straight and realiable way is to readlink proc self exe buf bufsize Linux readlink proc curproc file buf bufsize FreeBSD..

Debugging with command-line parameters in Visual Studio

http://stackoverflow.com/questions/298708/debugging-with-command-line-parameters-in-visual-studio

line arguments. At the moment I just run the generated EXE file with the arguments I need like this program.exe file.txt..

CreateProcess from memory buffer

http://stackoverflow.com/questions/305203/createprocess-from-memory-buffer

from memory buffer I can use CreateProcess to launch an EXE. I want to have the contents of an EXE in a memory buffer and.. to launch an EXE. I want to have the contents of an EXE in a memory buffer and do CreateProcess or an equivalent on.. to do that The backstory we make games. We send a plain EXE to our distributors which then wrap it using their favorite..

Find what directory the running process EXE is stored in [duplicate]

http://stackoverflow.com/questions/3364589/find-what-directory-the-running-process-exe-is-stored-in

what directory the running process EXE is stored in duplicate Possible Duplicate How to get the application..

reading an application's manifest file?

http://stackoverflow.com/questions/420852/reading-an-applications-manifest-file

In other words they're embedded towards the end of the EXE or DLL. You can use LoadLibraryEx FindResource LoadResource.. FreeLibrary hModule return 0 Alternatively you can use MT.EXE from the Windows SDK mt inputresource dll_with_manifest.dll..

How do I call ::CreateProcess in c++ to launch a Windows executable?

http://stackoverflow.com/questions/42531/how-do-i-call-createprocess-in-c-to-launch-a-windows-executable

executable Looking for an example that Launches an EXE Waits for the EXE to finish. Properly closes all the handles.. Looking for an example that Launches an EXE Waits for the EXE to finish. Properly closes all the handles when the executable..

How can I call a function of a C++ DLL that accepts a parameter of type stringstream from C#?

http://stackoverflow.com/questions/4538562/how-can-i-call-a-function-of-a-c-dll-that-accepts-a-parameter-of-type-stringst

use the same compiler and mix a release DLL with a debug EXE you will find stack heap corruption and other harder to find..

Visual Studio debug iterators

http://stackoverflow.com/questions/6103314/visual-studio-debug-iterators

summarize the macros must be consistent within each binary EXE or DLL and furthermore binaries that pass STL objects to each.. have consistent macro settings. Your example involves an EXE and DLL passing a vector between themselves so the EXE and DLL.. an EXE and DLL passing a vector between themselves so the EXE and DLL need to have the same _SECURE_SCL and _HAS_ITERATOR_DEBUGGING..

Win32 programming hiding console window

http://stackoverflow.com/questions/622592/win32-programming-hiding-console-window

is not a console program. Consoleness is a property of the EXE file. The OS reads that setting and decides whether to allocate..

How do I programatically get the version of a DLL or EXE file?

http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe-file

do I programatically get the version of a DLL or EXE file I need to get the product version and file version for.. to get the product version and file version for a DLL or EXE file using Win32 native APIs in C or C . I'm not looking for..