summaryrefslogtreecommitdiffstats
path: root/PCbuild/winsound.dsp
Commit message (Collapse)AuthorAgeFilesLines
* Revert this checkin:Trent Mick2000-08-131-99/+99
| | | | | http://www.python.org/pipermail/python-checkins/2000-August/007072.html and make PCbuild/*.dsp PCbuild/*.dsw binary again.
* These files all used to be tagged as binary in CVS. I recently changed this soTrent Mick2000-08-111-99/+99
| | | | | | that these files are treated as normal text files (which they are). However, the files also had to be changed to be stored in CVS internally with UNIX line terminators (they had DOS line terminators internally before this commit).
* A bunch of project files were checked in as text files.Guido van Rossum2000-07-011-99/+99
| | | | They should all be binary (cvs admin -kv has now been applied).
* Update all projects so Debug builds use "/Zi" instead of "/ZI", which means ↵Mark Hammond2000-07-011-99/+99
| | | | | | everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do!
* Added winsound project to workspace, and added -I options to winsoundGuido van Rossum2000-04-211-4/+4
|
* Mark Hammond:Guido van Rossum2000-04-211-0/+99
* Temp directory for all projects are now specific to the project (rather than common as before). This avoids any conflicts with debug symbols or common file names etc. NOTE: You should manually delete your existing build directory after applying this patch, as the MSVC "clean" command will now only clean the new temporary directories - not the existing common temp directory. * Base address for all extension modules updated. PC\dllbase_nt.txt also updated. Erroneous "libpath" directory removed for all projects. * winsound module moved from a builtin module to an extension module. This was done primarily to avoid Python16.dll needing to pull in winmm.dll. Really dumb test added for winsound - but if nothing else it ensures the module imports.