I sent the message below yesterday but with the .exe file attached normally.
The mailing list mailer refused that, so I'm resending it with the exe file
gzipped. I haven't read the messages that arrived today well enough to know
whether this info still makes a difference.

        Danny
------------

Maybe this'll help too.

Small source and small executable attached.
Compiled with
  arm-wince-cegcc-gcc -o tgt.exe tgt.c -lmmtimer

Does this work on your system? It does on mine.

Note that the CeGCC tools allow you to look into an exe as well, e.g. :
  dannypc: {38} arm-wince-cegcc-objdump -x tgt.exe | grep "DLL Name:"
        DLL Name: cegcc.dll
        DLL Name: COREDLL
        DLL Name: MMTIMER
        DLL Name: cegcc.dll
  dannypc: {39} 

        Danny

On Tue, 2007-01-16 at 19:14 +0000, Cool_Zer0 wrote:
> Erik van Pienbroek wrote:
> > Op dinsdag 16-01-2007 om 18:50 uur [tijdzone +0000], schreef Cool_Zer0:
> >   
> >> If you want I can publish the .dll's generated, the .lib's generated, 
> >> the .def's generated and even the .h needed by ffmpeg so that you can 
> >> test..
> >>     
> >
> > Hi,
> >
> > If you could put everything online (source, .dll, .lib, .def, etc...)
> > I can sure investigate it further for you.
> >
> >   
> 
> http://www.ncenteio.net/ffmpeg_lib.tar (~9.5Mb)
> 
> The package contains the .def files generated by ffmpeg, the .dll files 
> generated by ffmpeg and the .lib files that I genereated using "lib.exe" 
> with
> "lib /machine:arm /def:av*.def"
> 
> The folder "ffmpeg" contains the headers files for ffmpeg...
> 
> If you can get a way of compile a program written in MSVC++ (Visual 
> Studio .Net 2005), preferably a "MFC SmartDevice" for Pocket PC (Windows 
> Mobile 5.0 Pocket PC), I'll be very appreciate...
> You can simple include file "avformat.h" and call the function 
> av_register_all()... It should be enough... If that works the the rest 
> should work too...
> 
> After that I think that it deserves a guide on how to do it for future 
> people...
> 
> 
> I'll wait, ansious, for your reply :)
> 
> Thanks
> 
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Cegcc-devel mailing list
> Cegcc-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/cegcc-devel
-- 
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info
#include <windows.h>

int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow)
{
	DWORD	t1, t2;
	wchar_t	s[20];

	t1 = timeGetTime();
	sleep(1);
	t2 = timeGetTime();

	swprintf(s, L"diff is %d", t2-t1);
	MessageBoxW(0, s, L"Message", MB_OK);
}

Attachment: tgt.exe.gz
Description: GNU Zip compressed data

Attachment: signature.asc
Description: This is a digitally signed message part

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to