Skip to content

Commit

Permalink
WIN32 compile fixes...
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3875 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Oct 19, 2004
1 parent e5355c3 commit a5a683f
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 40 deletions.
25 changes: 13 additions & 12 deletions src/Fl_win32.cxx
@@ -1,5 +1,5 @@
//
// "$Id: Fl_win32.cxx,v 1.33.2.37.2.50 2004/10/18 20:22:24 easysw Exp $"
// "$Id: Fl_win32.cxx,v 1.33.2.37.2.51 2004/10/19 18:21:52 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
Expand Down Expand Up @@ -30,6 +30,7 @@
#include <FL/Fl.H>
#include <FL/x.H>
#include <FL/Fl_Window.H>
#include <FL/Enumerations.H>
#include "flstring.h"
#include <stdio.h>
#include <stdlib.h>
Expand Down Expand Up @@ -737,34 +738,34 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
Fl::e_length = 0;
switch (Fl::e_keysym) {
case FL_KP + '0' :
Fl::e_keysym = Fl_Insert;
Fl::e_keysym = FL_Insert;
break;
case FL_KP + '1' :
Fl::e_keysym = Fl_End;
Fl::e_keysym = FL_End;
break;
case FL_KP + '2' :
Fl::e_keysym = Fl_Down;
Fl::e_keysym = FL_Down;
break;
case FL_KP + '3' :
Fl::e_keysym = Fl_Page_Down;
Fl::e_keysym = FL_Page_Down;
break;
case FL_KP + '4' :
Fl::e_keysym = Fl_Left;
Fl::e_keysym = FL_Left;
break;
case FL_KP + '6' :
Fl::e_keysym = Fl_Right;
Fl::e_keysym = FL_Right;
break;
case FL_KP + '7' :
Fl::e_keysym = Fl_Home;
Fl::e_keysym = FL_Home;
break;
case FL_KP + '8' :
Fl::e_keysym = Fl_Up;
Fl::e_keysym = FL_Up;
break;
case FL_KP + '9' :
Fl::e_keysym = Fl_Page_Up;
Fl::e_keysym = FL_Page_Up;
break;
case FL_KP + '.' :
Fl::e_keysym = Fl_Delete;
Fl::e_keysym = FL_Delete;
break;
case FL_KP + '/' :
case FL_KP + '*' :
Expand Down Expand Up @@ -1241,5 +1242,5 @@ void Fl_Window::make_current() {
}

//
// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.50 2004/10/18 20:22:24 easysw Exp $".
// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.51 2004/10/19 18:21:52 easysw Exp $".
//
4 changes: 2 additions & 2 deletions vcnet/jpeg.vcproj
Expand Up @@ -36,7 +36,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="jpegd.lib"
OutputFile="..\lib\fltkjpegd.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down Expand Up @@ -86,7 +86,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="jpeg.lib"
OutputFile="..\lib\fltkjpeg.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down
4 changes: 2 additions & 2 deletions vcnet/libpng.vcproj
Expand Up @@ -39,7 +39,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="png.lib"
OutputFile="..\lib\fltkpng.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down Expand Up @@ -86,7 +86,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="pngd.lib"
OutputFile="..\lib\fltkpngd.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down
4 changes: 2 additions & 2 deletions vcnet/zlib.vcproj
Expand Up @@ -36,7 +36,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="zd.lib"
OutputFile="..\lib\fltkzd.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down Expand Up @@ -85,7 +85,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLibrarianTool"
OutputFile="z.lib"
OutputFile="..\lib\fltkz.lib"
SuppressStartupBanner="TRUE"/>
<Tool
Name="VCMIDLTool"/>
Expand Down
38 changes: 24 additions & 14 deletions visualc/fltkdll.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions visualc/fltkimages.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions visualc/jpeg.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions visualc/libpng.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions visualc/zlib.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a5a683f

Please sign in to comment.