Hi, Does anyone know where I could find the source code of standard strstr() function ? (I would like to know how they made it so quick !!) Thanks -- Riccardo...
Riccardo Cohen
rcohen@...
Aug 13, 2001 11:54 am
413
Assuming you have VC++ and you bothered to install the C Run Time (CRT) source code it would be staring you in the face: Directory of C:\VS\VC98\CRT\SRC ...
Victor R. Volkman
vv@...
Aug 13, 2001 12:11 pm
414
... Sources for glibc are available wherever the binary is available - as required by the GPL. If you have a CD from any standard Linux installation, it should...
David Charlap
shamino3@...
Aug 13, 2001 7:05 pm
415
... Go to www.freebsd.org and look thru the sources on line in their cvsweb interface (http://www.FreeBSD.org/cgi/cvsweb.cgi/) ... for i386, strstr() is not...
Art Stine
abstine@...
Aug 13, 2001 7:28 pm
416
... function ? ... Strstr traditionally uses a Boyer-Moore search. For a brief explanation of what makes it so quick, see Moore's summarization ...
Eric Wiseblatt
eric@...
Aug 13, 2001 7:33 pm
417
Thanks to all of you ! -- Riccardo Cohen Articque Les Roches 37230 Fondettes France email = rcohen@... web = http://www.articque.com tel: +33 02 47...
Riccardo Cohen
rcohen@...
Aug 14, 2001 7:36 am
418
Thanx for your suggestions. Even with -nonativemenubar, vmenubar methods (Notify, Observe, HandleButton..) are not called. Not even vmenu::SetParentObserver()....
Mahini, Farid @ MCDY
Farid.Mahini@...
Aug 14, 2001 1:37 pm
419
Hello Gummers, In my Galaxy app. (2.6 C++, Windows) I've used a subclass of veventClientEvent for event synchronization purposes (simplified example): int...
Mahini, Farid @ MCDY
Farid.Mahini@...
Aug 14, 2001 1:44 pm
420
[gum] Multiple Blocking EventsIf I understand you correctly the problem is that you cant have concurrent event loops because you are sharing global state...
Eric Wiseblatt
eric@...
Aug 14, 2001 4:32 pm
421
Thank you eric. This is somewhat similar to what I am doing . The read thread from the comm. DLL(s) use the callback(s) to place data unto a message queue,...
Mahini, Farid @ MCDY
Farid.Mahini@...
Aug 14, 2001 5:28 pm
422
vwindowInitIterator(&iterator) ; multiInstance = FALSE ; I'm trying to determine if another instance of my applicaiton is running. Here is the code I'm using,...
Wayne Christian
wac@...
Aug 27, 2001 11:09 pm
423
... Keep in mind that a vapplication is a data structure that the Galaxy library allocates at startup. On many (most?) operating systems, it will be allocated...
David Charlap
shamino3@...
Aug 27, 2001 11:39 pm
424
We recently decided to rename our app but of course in doing so the old preferences are in the old dictionary in vgalusr8.vr. Is there a way to determine the...
Hello In our app and also with VRE following problem occurs. When Windows XP theme is selected the menubar text background color is incorrect (white). See...
Kari Heinola
kph@...
Jan 26, 2002 2:35 am
426
... Unfortunately, something like this can not really be fixed without major surgery on Galaxy. If you don't have the source and Ambiencia isn't planning a...
Hello, thanks for the suggestions. First, I now included the bitmap I forgot to attach in my original email. Also we are using Galaxy C 3.0. Then, I didn't...
Kari Heinola
kph@...
Jan 29, 2002 4:11 am
428
... OK. I am not familiar with what WinXP menubars are supposed to look like, but I am assuming that the color and font should blend in with the rest of the...
Does anyone have an idea why Galaxy doesn't want to run with Quantify? I built our Solaris Galaxy application and linked it with Quantify to do some...
Douglas E. Forester
dougf@...
Jan 30, 2002 10:53 pm
430
... First off, note that a thrown exception is not a crash. ... It would appear that the act of searching for the system resource file is failing. ... No. I...
... Thanks for the hint about the array of path elements. Makes sense now. What I found out is that Galaxy is making a search for something in the various lib...
Douglas E. Forester
dougf@...
Jan 31, 2002 9:02 pm
432
... This, I unfortunately don't know. Apps always look for the system resource file, the user resource file and the application resource file on startup. The...
... I've found the Solaris "truss" command useful in following an application's quest for files. By default truss lists all of an application's system calls....
Burks, Henry
henry.burks@...
Jan 31, 2002 10:09 pm
434
First, dont trust errno in exceptions. They usually arent accurate because errno isnt cleared. I'm initially ... What's that address between vfsGetLinkInfo and...
... The thing is: when I run the non-quantified version of the application from the same directory, it runs successfully. Sounds like Galaxy is using something...
Douglas E. Forester
dougf@...
Feb 1, 2002 1:10 am
436
... Great idea, Henry! I used to truss to find out what files were trying to be opened. I discovered that the "quantify-ed" libs created by the link were not...
Douglas E. Forester
dougf@...
Feb 2, 2002 12:24 am
437
Has anyone ever been able to get vfilechsrSetFilterByProc to work with a native file chooser on Windows? The Galaxy Application Environment Programmer's Guide...
I'm not absolutely certain, but I'm pretty sure it doesn't work with the native file chooser. I don't believe the Windows file chooser provided any hooks to...
We used the file type list box on the native open-file dialog, but it is limited to 10 file types (dont know if galaxy or windows) and I am not sure to be able...
I think you're right Jim. If I remember correctly, we could only make native file choosers on Windows filter by extension. -Larry ... From: Jim Edwards-Hewitt ...
We are migrating a GALAXY application to a Visual C++ - only environment. As a first step, all GUI components have been rewritten in MFC. Now the core...