Search the web
Sign In
New User? Sign Up
mingw32 · Mingw - GNU Compiler for Win9x/NT/2K
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3254 - 3283 of 3345   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3254
Aren't there examples in M$ DDK or in MSDN Library ? There might be everything you want in the ReactOS sources (I've seen some DDK stuff in it) ...
Hervé PARISSI
hparissi@...
Send Email
Sep 1, 2000
8:11 am
3255
Hello, How would you do this in linux? Tom...
Thomas Philip Runarsson
tpr@...
Send Email
Sep 1, 2000
10:48 am
3256
... I guess the only way to go is system() or fork()/exec(). Ales...
Ales Pour
pour@...
Send Email
Sep 1, 2000
11:19 am
3257
... I'll repeat. I am looking for a SIMPLE hello world type of driver just to prove the concept. I am not looking to confuse anyone. Just something to prove...
Chris Telting
telting-ml@...
Send Email
Sep 1, 2000
12:51 pm
3258
Here's my cpp. Very basic, I was just using it to see if the compiler would work. It doesn't matter if I use <iostream.h> or "iostream.h" #include...
ed Whitcomb
edrw@...
Send Email
Sep 1, 2000
1:23 pm
3259
Complied fine for me, changed #include "iostream.h" to #include <iostream.h> and compiled with g++ foo.cpp generated a.exe which ran fine. ... From: "ed...
Steven Cook
SCook@...
Send Email
Sep 1, 2000
1:27 pm
3260
Hello Gennady, Gennady Feldman <gena01@...> wrote: GF> Hello Everybody. [] GF> I get 24064 bytes executable. It seems that switching from a GF> reference ...
Paul Sokolovsky
paul-ml@...
Send Email
Sep 1, 2000
1:37 pm
3261
Hello Ed, You get a complete answer allready from steven. General Explanation: Include-Files comming with the are distinguish from your stuff by the <> around ...
Georg Fusz
fusz@...
Send Email
Sep 1, 2000
1:52 pm
3262
Hello Chris, Chris Telting <telting-ml@...> wrote: CT> It appears that those ddk headers are CT> GPL(not LGPL) and as such any drivers compiled...
Paul Sokolovsky
paul-ml@...
Send Email
Sep 1, 2000
1:57 pm
3263
Hello Alberto, Alberto Corbi <alberto@...> wrote: AC> Is there a common C sound library/interface fow Linux and Mingw32?? AC> Thankyou...
Paul Sokolovsky
paul-ml@...
Send Email
Sep 1, 2000
2:01 pm
3264
I would think you would have to launch the browser explicitly, like system("netscape ...") or something like that.... Peace..... Tom Ales Pour...
Tom Williams
tom.williams@...
Send Email
Sep 1, 2000
3:28 pm
3265
... On Linux in general there is no such thing as a registry that links file types to executables, so you cannot just say "open somefile". Some distributions...
Franco Bez
franco.bez@...
Send Email
Sep 1, 2000
7:33 pm
3266
... Um I looked at the ntddk.h file in the ReactOS source and it refered me to the standard GPL COPYING file. ReactOS uses the windows32api although I believe...
Chris Telting
telting-ml@...
Send Email
Sep 1, 2000
9:50 pm
3267
... Any header added to the MinGW set must be Public Domain. Cheers, ... Earnie Boyd: <mailto:earnie_boyd@...> __Cygwin: POSIX on Windows__ Cygwin...
Earnie Boyd
earnie_boyd@...
Send Email
Sep 1, 2000
9:56 pm
3268
When I run this C program: #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { system("netscape test.html"); return 0; } I get my Netscape...
Tom Williams
tom.williams@...
Send Email
Sep 1, 2000
10:43 pm
3269
... system or fork/exec are in fact exactly how to interface to netscape. There are other ways as well, but that's probably the simplest. netscape has a lot of...
Ray Kelm
rhk@...
Send Email
Sep 2, 2000
12:05 am
3270
... Hip hip horray!!! Long live public domain....
Chris Telting
telting-ml@...
Send Email
Sep 2, 2000
1:28 am
3271
It seems that NT drivers need to be compiled for the "native" (1) subsystem (rather than "console" (3) subsystem), maybe some one (Mumit, Earnie ?) will fix...
Hervé PARISSI
hparissi@...
Send Email
Sep 2, 2000
10:36 am
3272
Hi, I was taking a look at something called DCOM, here is an example application (plus code): http://www.microsoft.com/Mind/0798/extreme0798.htm I was...
Thomas Philip Runarsson
tpr@...
Send Email
Sep 2, 2000
11:40 am
3273
Hello Hervé, Hervé PARISSI <hparissi@...> wrote: HP> It seems that NT drivers need to be compiled for the "native" (1) subsystem (rather than...
Paul Sokolovsky
paul-ml@...
Send Email
Sep 2, 2000
12:05 pm
3274
... duh :p ... Ld(the gcc linker) actually does support writing the native id code to the header. It's is just simple field in a structure. But it doesn't...
Chris Telting
telting-ml@...
Send Email
Sep 2, 2000
3:11 pm
3275
Hi folks, ... Kind of an aside...and an announcement of sorts: SourceNavigator is now available under the Gnu Public License agreement. I have found...
Paul Garceau
pgarceau@...
Send Email
Sep 2, 2000
8:35 pm
3276
Do these support DirectShow (DirectX Media SDK)? ... defining...
Don Pellegrino
don@...
Send Email
Sep 3, 2000
11:32 am
3277
Most of the links are broken at: http://www.xraylith.wisc.edu/~khan/software/gnu-win32/index.html Does anyone know of a mirror or other similar resources? ...
Brian Perkins
briankperkins@...
Send Email
Sep 3, 2000
5:23 pm
3278
Paul, PG> SourceNavigator is now available ... Thanks for the "heads-up" - looks very promising! As soon as I can figure out how to prioritize "User Specified...
Brian Perkins
briankperkins@...
Send Email
Sep 3, 2000
8:18 pm
3279
On Sun, 27 Aug 2000 16:55:48 -0700 "Chris Telting" <telting-ml@...> wrote: [snip code listing] ... #define STRICT #include <windows.h> #include...
Benoit Goudreault-Emond
bge@...
Send Email
Sep 3, 2000
8:51 pm
3280
No, the libs are for that Microsoft calls DirectX Foundation and Direct3D Retained Mode. Better known as just DirectX. Peter...
zaqhaq@...
Send Email
Sep 3, 2000
10:04 pm
3281
... Not true. But anyone using the ReactOS source code must produce GPLed programs, this is the standard protection that the GPL gives against making...
David Welch
welch@...
Send Email
Sep 3, 2000
10:16 pm
3282
I am looking for a solution to play video on windows with a technology compatible with mingw32. I was hoping to use Microsoft's DirectShow, part of the...
Don Pellegrino
don@...
Send Email
Sep 3, 2000
11:05 pm
3283
... Try them again--maybe the server was down. I just tried every link prior to 'Old releases' on that page except the binaries (.tar.gz and .zip) and they all...
Greg Chicares
chicares@...
Send Email
Sep 3, 2000
11:13 pm
Messages 3254 - 3283 of 3345   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help