From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Ben Key" Newsgroups: gmane.emacs.devel Subject: RE: [Patch for Windows implementation of play-sound] Date: Mon, 21 Oct 2002 21:08:51 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: <002301c27967$96b19cd0$6401a8c0@GODDESS> References: <20021021085033.7EDB.LEKTU@terra.es> Reply-To: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035250328 5735 80.91.224.249 (22 Oct 2002 01:32:08 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 22 Oct 2002 01:32:08 +0000 (UTC) Cc: Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 183ntu-0001UN-00 for ; Tue, 22 Oct 2002 03:32:06 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 183nut-0001vy-00 for ; Tue, 22 Oct 2002 03:33:07 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 183nXj-0005kj-00; Mon, 21 Oct 2002 21:09:11 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 183nXO-000572-00 for emacs-devel@gnu.org; Mon, 21 Oct 2002 21:08:50 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 183nXK-0004sS-00 for emacs-devel@gnu.org; Mon, 21 Oct 2002 21:08:49 -0400 Original-Received: from smtp-server3.tampabay.rr.com ([65.32.1.41]) by monty-python.gnu.org with esmtp (Exim 4.10) id 183nXJ-0004pI-00 for emacs-devel@gnu.org; Mon, 21 Oct 2002 21:08:45 -0400 Original-Received: from GODDESS (6535194hfc48.tampabay.rr.com [65.35.194.48]) by smtp-server3.tampabay.rr.com (8.12.2/8.12.2) with SMTP id g9M18i7Z020951; Mon, 21 Oct 2002 21:08:44 -0400 (EDT) Original-To: "'Juanma Barranquero'" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) In-reply-to: <20021021085033.7EDB.LEKTU@terra.es> X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:8624 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:8624 > I've asked the author about it. Among other things, when compiling with > MSVC it requires the newest release of the compiler and/or the SDK, and > That's Not Good IMHO. This is not true. I did not say that the newest version of MSSDK is required. I said that I have it installed. My patch will work with the include files that are included with Visual C++ 6.0. You will, however, see a large number of warning messages due to the following segment of the version of WINDOWS.H that is included with Visual C++ 6.0: #if(WINVER >= 0x0500) #pragma message ("") #pragma message ("NOTE: WINVER has been defined as 0x0500 or greater which enables") #pragma message ("Windows NT 5.0 and Windows 98 features. When these headers were released,") #pragma message ("Windows NT 5.0 beta 1 and Windows 98 beta 2.1 were the current versions.") #pragma message ("") #pragma message ("For this release when WINVER is defined as 0x0500 or greater, you can only") #pragma message ("build beta or test applications. To build a retail application,") #pragma message ("set WINVER to 0x0400 or visit http://www.microsoft.com/msdn/sdk") #pragma message ("to see if retail Windows NT 5.0 or Windows 98 headers are available.") #pragma message ("") #pragma message ("See the SDK release notes for more information.") #pragma message ("") #endif This warning message is displayed because I had to define WINVER and _WIN32_WINNT to at least 0x0500 to avoid a compilation error I was experiencing. I do not at this time have the details about that compilation error.