1. WIN32 API Constant Declarations
- Posted by Gary Dumer <dumer9354 at WHITE-MARSH.AIM-SMART.COM> Jun 24, 1999
- 516 views
Does anyone have a copy of the "WIN32 API Constant Declarations" (see below) file on their computer? Unfortunately, the link is no longer valid on the Win32 Documentation archive. I've been looking for this exact data and I can't believe the link is gone. Can anyone help? If so, please email the file to me. Thanks... Gary. >WIN32 API Constant Declarations 683K Microsoft Nov 19/98 >6200 constant declarations for Visual Basic. The numeric values of these >constants are useful for WIN32 programming in Euphoria.
2. Re: WIN32 API Constant Declarations
- Posted by JJProg at CYBERBURY.NET Jun 24, 1999
- 472 views
EU>Does anyone have a copy of the "WIN32 API Constant Declarations" (see below) EU>file on their computer? Unfortunately, the link is no longer valid on the EU>Win32 Documentation archive. I've been looking for this exact data and I EU>can't believe the link is gone. Can anyone help? If so, please email the EU>file to me. EU>Thanks... Gary. EU>>WIN32 API Constant Declarations 683K Microsoft Nov 19/98 EU>>6200 constant declarations for Visual Basic. The numeric values of these EU>>constants are useful for WIN32 programming in Euphoria. I just uploaded the Win32API functions, constants etc. to my web page at http://members.tripod.com/~JJProg/win32api.zip They're in Visual Basic format, but it's pretty simple to convert - I'll write an Euphoria version when I have a chance. Jeffrey Fielding JJProg at cyberbury.net http://members.tripod.com/~JJProg/
3. Re: WIN32 API Constant Declarations
- Posted by Bernie Ryan <bwryan at PCOM.NET> Jun 24, 1999
- 463 views
Gary, Microsoft has a list of Win32 Functions in Alphabetical Order at Bernie
4. Re: WIN32 API Constant Declarations
- Posted by Gary Dumer <dumer9354 at WHITE-MARSH.AIM-SMART.COM> Jun 24, 1999
- 528 views
Thanks to ALL who responded... I now have a copy and it's just what I was looking for. To Jeffrey Fielding... It would be great to have a Euphoria version. On Thu, 24 Jun 1999 11:52:30 EST, JJProg at CYBERBURY.NET wrote: >EU>Does anyone have a copy of the "WIN32 API Constant Declarations" (see below) >EU>file on their computer? Unfortunately, the link is no longer valid on the >EU>Win32 Documentation archive. I've been looking for this exact data and I >EU>can't believe the link is gone. Can anyone help? If so, please email the >EU>file to me. > >EU>Thanks... Gary. > >EU>>WIN32 API Constant Declarations 683K Microsoft Nov 19/98 >EU>>6200 constant declarations for Visual Basic. The numeric values of these >EU>>constants are useful for WIN32 programming in Euphoria. > >I just uploaded the Win32API functions, constants etc. to my web page at >http://members.tripod.com/~JJProg/win32api.zip > >They're in Visual Basic format, but it's pretty simple to convert - I'll >write an Euphoria version when I have a chance. > >Jeffrey Fielding >JJProg at cyberbury.net >http://members.tripod.com/~JJProg/
5. Re: WIN32 API Constant Declarations
- Posted by JJProg at CYBERBURY.NET Jun 25, 1999
- 464 views
EU>To Jeffrey Fielding... It would be great to have a Euphoria version. EU>>They're in Visual Basic format, but it's pretty simple to convert - I'll EU>>write an Euphoria version when I have a chance. After writing a program to convert the constants and comments to Euphoria (I was going to do the types and functions after I got this working), I noticed that Microsoft was very sloppy with their constant declarations - many constants depend on other constants that they define later, and I fixed these. The main problem is that they give constants with the same name different values. KEY_EXECUTE is defined as 0 first, then defined as 1. I was hoping to write an include file so one could just include the file and not search for constants and copy them etc., but the file doesn't work at the moment because of the multiple declartions. Shall I continue this by renaming the constants, or continue with the multiple definitions and figure the user will figure out which constant they should use. Jeffrey Fielding JJProg at cyberbury.net http://members.tripod.com/~JJProg/
6. Re: WIN32 API Constant Declarations
- Posted by Gary Dumer <dumer9354 at WHITE-MARSH.AIM-SMART.COM> Jun 25, 1999
- 469 views
- Last edited Jun 26, 1999
I think you should continue with multiple definitions (duplicates) and let the user determine the proper ones. However, It would be desirable if you would highlight the dups with an obvious comment at the proper place. Gary. -----Original Message----- From: JJProg at CYBERBURY.NET <JJProg at CYBERBURY.NET> To: EUPHORIA at LISTSERV.MUOHIO.EDU <EUPHORIA at LISTSERV.MUOHIO.EDU> Date: Friday, June 25, 1999 2:32 PM Subject: Re: WIN32 API Constant Declarations >EU>To Jeffrey Fielding... It would be great to have a Euphoria version. > > >EU>>They're in Visual Basic format, but it's pretty simple to convert - I'll >EU>>write an Euphoria version when I have a chance. > >After writing a program to convert the constants and comments to >Euphoria (I was going to do the types and functions after I got this >working), I noticed that Microsoft was very sloppy with their constant >declarations - many constants depend on other constants that they define >later, and I fixed these. The main problem is that they give constants >with the same name different values. KEY_EXECUTE is defined as 0 first, >then defined as 1. > I was hoping to write an include file so one could just include the file >and not search for constants and copy them etc., but the file doesn't >work at the moment because of the multiple declartions. Shall I continue this >by renaming the constants, or continue with the multiple definitions and >figure the user will figure out which constant they should use. > >Jeffrey Fielding >JJProg at cyberbury.net >http://members.tripod.com/~JJProg/