Tagged Questions
The entry-point tag has no wiki summary.
56
votes
10answers
3k views
Is main() really start of a C++ program?
The section $3.6.1/1 from the C++ Standard reads,
A program shall contain a global
function called main, which is the
designated start of the program.
Now consider this code,
int square(int ...
11
votes
2answers
3k views
Difference between WinMain,main and DllMain in C++
What is the difference between the three functions and when to use them??
8
votes
1answer
132 views
Const-Qualification of Main's Parameters in C++
The C++ standard mandates that all conforming implementations support the following two signatures for main:
int main();
int main(int, char*[]);
In case of the latter signature, would the addition ...
7
votes
1answer
552 views
What functions does _WinMainCRTStartup perform?
This is part of a series of at least two closely related, but distinct questions. I hope I'm doing the right thing by asking them separately.
I'm trying to get my Visual C++ 2008 app to work without ...
5
votes
8answers
898 views
Avoiding the main (entry point) in a C program
Is it possible to avoid the entry point (main) in a C program. In the below code, is it possible to invoke the func() call without calling via main() in the below program ? If Yes, how to do it and ...
5
votes
1answer
5k views
Multiple Entry Points in GWT
I'm getting into Google Web Toolkit, and am a little confused about the Entry Points in GWT. Google's docs say:
If you have multiple EntryPoints (the interface that defines onModuleLoad()) within ...
5
votes
4answers
3k views
GWT Compile “Add an entry point module” dialog
Can anyone explain where the Eclipse GWT plugin defines it's entry points?
In an attempt to get my old GWT project working again with GWT 2.0, I created a default GWT 2.0 project in Eclipse and was ...
5
votes
7answers
12k views
Problem with multiple entry Points in the same module
I have multiple entry points in the same module.
For example I have an Home entry point for the home page and an Admin
entry point for the admin page.
<entry-point ...
4
votes
2answers
376 views
delphi Import dll function with specified entry point
How can I define this function in Delphi ? I know imports only without entry point and can't find any usefull example :(
That's written in C#
[DllImport("dwmapi.dll", EntryPoint = "#131")]
static ...
3
votes
1answer
393 views
Error while trying to run a release build of a Qt application on Windows
I'm trying to build the Windows version of my app. The program compiles and runs fine on Qt Creator but when I try to run it standalone it throws the following error:
The procedure entry point ...
2
votes
1answer
42 views
Determine load address and entry point of stripped Linux Kernel image
I have a crosscompiling toolchain for an embedded system (mipsel) on my x86 Linux. I know how to build a custom kernel (let's call the image "vmlinux") for it and how to strip that image via
objcopy ...
2
votes
1answer
66 views
Run continuous custom application logic on server side. Entry point?
I am creating some kind of a plug-in system. Currently I was using WinForms application to load the assemblies, using Assembly.Load and Activator.CreateInstance. The WinForms GUI was supposed to show ...
2
votes
2answers
409 views
Replacing the WPF entry point
WPF defines its own Main() method. How should I go about replacing it with my own Main method that (normally) opens the WPF MainWindow (e.g. to add a non-WPF scripting mode via command-line ...
2
votes
2answers
188 views
Where is the entry-point of the C code generating by pypy
I'm using PyPy to translate some python code to C code. I wrote a very simple script as below:
def main():
print "hello world!"
def entry_point(argv):
main()
return 0
def target(*args):
...
2
votes
1answer
250 views
How to add a wrapper to the MFC WinMain?
I want to add a wrapper to the MFC WinMain in order to be able to make a MFC application be able run as GUI application or as a service.
Can I add a wrapper to WinMail from MFC without modifying MFC ...
2
votes
5answers
2k views
How do I compile a module without an EntryPoint?
I have a utility module for GWT which doesn't have an UI (hence, there is no class which inherits from com.google.gwt.core.client.EntryPoint. When I try to compile this module with GWT 1.7.1, I get ...
2
votes
6answers
276 views
What benefits does main(…) provide over using a static-initializer as a pseudo entry-point?
The entry point into a program in java is typically something like this
// MyMain.java
public class MyMain{
//whatever
public static void main(String args[]){
...
1
vote
2answers
63 views
Is the variable elf_entry in the kernel function load_elf_binary the entry point i get with readelf -h
I need to find the entry point of an elf file running in a virtual environment (debian x86). On the host machine i can determine the current instruction pointer and all the other cpu registers. So ...
1
vote
1answer
81 views
Plugins for pyramid (themes, views etc)
Ok here is the problem in brief. I do have a pyramid setup that does start to look like a cms.
I have as base models: [accounts, pages, errors, menus, configs]
It works pretty well but I do have a ...
1
vote
2answers
71 views
how to change the entry point in gcc
How to change the entry point of gcc compiler ?
I mean the code will look like the bellow one.
#include<stdio.h>
int entry() //entry is the entry point instead of main
{
return 0;
}
1
vote
1answer
169 views
Google Chrome: OpenScripting.framework - can't find entry point InjectEventHandler
I try to inject several SIMBL plugins (e.g. Afloat and FScriptAnywhere) into Chrome and other applications.
It works fine on all other applications but not on Chrome. There I get this output on ...
1
vote
0answers
196 views
Mule groovy component entry point resolution failure
I have a very simple Mule (3.x) flow:
<spring:bean name="messageHandler" class="mypackage.MessageHandler"/>
<flow name="main">
<vm:inbound-endpoint path="in" ...
1
vote
2answers
64 views
Is there a way to access entry point class object from other classes of the app?
Just wonder if I can reference entry point object from any place in the app? Is it maybe assigned to some global object, like stage is for example?
Currently I use static methods and variables, but ...
1
vote
2answers
310 views
Can spring security support multi entry points?
I mean need different:
Login URL
Login out url
session time url
authentication provider
and even error page , css for different entry point.
is this possible?
1
vote
3answers
552 views
Android equivalent of: void main() / Sub Main?
I am trying to make my Android application run some code when run from the launcher, BEFORE launching into an activity. That is to say I want my app to start with a Sub Main as opposed to going into ...
1
vote
1answer
361 views
1
vote
3answers
248 views
What is the earliest entrypoint that the CLR calls before calling any method in an assembly?
In the past years I've occasionally been wondering what equivalent of the (in)famous DLL_PROCESS_ATTACH was available in the .NET world. Any documentation I have says, slightly simplified, that the ...
1
vote
3answers
379 views
Where is the information about the entry point of an assembly written in the assembly?
I used to think that an assembly could have only one main() method until I saw Jon Skeet's MiscUtil in a video lecture he delivered at the Microsoft office in Copenhagen.
So, I wrote this little app ...
1
vote
1answer
339 views
Access public EntryPoint fields in GWT
In GWT is there a way for a widget to access a public member of the application's EntryPoint class? I want to store certain "application-wide" data in the EntryPoint class, and then have widgets ...
1
vote
1answer
643 views
Looking for documentation on entry points for avifil32.dll
I have seen some examples of people using avifil32.dll to read / write AVI files and the DLL is supplied in Windows XP (possibly not Vista / Win 7). However even though its used in an example for the ...
1
vote
3answers
2k views
How to get the entry point of a child process?
I created a child process from within my process with CreateProcess() (in C++)
I then continue on using ReadProcessMemory to read through the memory and search for a specific something.
I would like ...
1
vote
5answers
468 views
Moving entry point to DLL in a WinForm app
I am trying to figure out a way to pre-process few things before my WinForm app loads. I tried putting static void Main() in a form within a class library project and commented it out from Program.cs. ...
0
votes
1answer
73 views
VS C++ 2010 debugging with external entry point [SOLVED]
I'm creating Win32 application and I have two projects.
The first one is a static library which contains _tWinMain() function, that is the entry point of a Win32 application.
The other one is an ...
0
votes
1answer
58 views
How to find offset of Dword where Address Of entry point of an executable is stored
There are disassemblers like CFF explorer which display the AddressOfEntryPoint of any executable along with the offset where it is stored. I know how to find that ( ...
0
votes
1answer
53 views
what is one entry and one exit of a simple construct?
I am reading some C text at the address https://cs.senecac.on.ca/~btp100/pages/content/const.html.
In the section "STRUCTURED PROGRAMMING", the author mentioned: "Structured programs are ...
0
votes
1answer
60 views
PE header entry point RVA
I am having an issue with a non .net, x86 machine type, pe32 executable piece of malware I am analyzing on a virtual machine. The entry point field is not NULL so this rules out execution starting at ...
0
votes
1answer
96 views
Play framework entry point
When I send a request from my browser to Play! on localhost:9000, what object/method in PlayFramework first starts processing my request to the server?
I know PlayFramework uses netty framework to ...
0
votes
1answer
67 views
apache htaccess - trailing slash and single entry point
I need to have one entry point for my application - index.php.
Before, i used to have such line of code:
RewriteRule ^(.*)$ /index.php [L]
Now, i need to force trailing slashes. I found out, that I ...
0
votes
1answer
63 views
External entry point C++ (lib or dll)
I wondered if it was possible to create an entry point (main or winmain) in an library of some sorts. I'm trying to write a window manager code and I'd like to have the main function in a library with ...
0
votes
1answer
34 views
can i change the entry point of an Application
i have been developing a onscreen keyboard application.
but i have to invoke the same now on the click of a button in another UI.
is it possible to change the entry point of the application to the ...
0
votes
0answers
33 views
which method is better for dll initialization?
All my initialization in the dll can be done through a single class constructor;
what i did was to declare an object of this class as a global object, and then do all the initialization there.
is ...
0
votes
3answers
81 views
GWT Server side entry point
I followed these instructions
http://code.google.com/webtoolkit/usingeclipse.html
There appears to be no entry point function for the server? How do I run background threads or code not related to ...
0
votes
0answers
458 views
What are WinMainCRTStartup, tmainCRTStartup, WinMain functions used for? [closed]
Possible Duplicates:
“APIENTRY _tWinMain” and “WINAPI WinMain” difference
What functions does _WinMainCRTStartup perform?
I just started to dive into windows ...
0
votes
2answers
106 views
C: how to implement dynamic function copying?
I have a static function which is meant for receiving C-style callbacks. Doing some experiments with multithreading approaches, want to try a way of receiving callback into functions at different ...
0
votes
1answer
143 views
How to extract parts of a GWT application into a library of separate dialogs
I'm trying to extract parts of a GWT application into many separate dialogs that can be invoked from php.
Existing state:
We have a GWT appplication that is deployed to JBoss as a WAR.
The app has a ...
0
votes
3answers
164 views
How to define an optional entry point into custom Mac OS X framework / dynamic library?
In Windows there is a DllMain and DLL_PROCESS_ATTACH / DLL_PROCESS_DETACH flags, which allow to initialize / free resources after DLL is attached to a process... So how can I specify an entry point in ...
0
votes
2answers
153 views
How to get the start address of the current process---Linux
Could you guys tell me how to get the start virtual address of the current process on linux? Any systems calls or facilities that would be helpful? Any guidance would be highly appreciated.
0
votes
2answers
215 views
Redirect to external link in AppEngine java?
I want to redirect to a external webpage but I don't know how to do that because in the EntryPoint I don't have Request and Response like in HttpServlets.
How can I do that?
0
votes
1answer
301 views
Why __tmainCRTStartup call WinMain when _UNICODE defined?
You can try this right now.
Define both WinMain and wWinMain abd compile it as a static library.
Make a new project for executable file exe.
Set character set setting UNICODE system.(define ...
0
votes
1answer
166 views
Where are WPRFLAG and _WINMAIN_ macros defined?
You know,
there are codes like
#ifdef WPRFLAG
and
#ifdef _WINMAIN_
in ctrexe.c . I'm using vs2010)
These macros determine what function is called from entry point.
But I can't find these ...