Tagged Questions

0
votes
4answers
66 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 …
0
votes
1answer
20 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 …
4
votes
1answer
60 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 …
1
vote
5answers
1k views

[GWT] 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 …
1
vote
3answers
183 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 …
0
votes
5answers
109 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. …
1
vote
6answers
132 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[]){ …