home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia: Special Games / INFESPGAMES.mdf / os2 / spl / src / spldlgs.hpp < prev    next >
Encoding:
Text File  |  1994-07-26  |  1.5 KB  |  40 lines

  1. /* spldlgs.hpp: dialogs for spl program
  2.  
  3.     Copyright (C) 1993, 1994 John-Marc Chandonia
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. // dialog procedure for select boxes:
  21. MRESULT EXPENTRY select_dlg_func(HWND hwnd, ULONG msg,
  22.                  MPARAM mp1, MPARAM mp2);
  23.  
  24. // dialog procedure for renaming spellbook
  25. MRESULT EXPENTRY rename_dlg_func(HWND hwnd, ULONG msg,
  26.                  MPARAM mp1, MPARAM mp2);
  27.  
  28. // dialog procedure for about box
  29. MRESULT EXPENTRY about_dlg_func(HWND hwnd, ULONG msg,
  30.                 MPARAM mp1, MPARAM mp2);
  31.  
  32. // dialog procedure for which detailed fields to show
  33. MRESULT EXPENTRY fields_dlg_func(HWND hwnd, ULONG msg,
  34.                  MPARAM mp1, MPARAM mp2);
  35.  
  36. // dialog procedure for how to sort spellbook
  37. MRESULT EXPENTRY sort_dlg_func(HWND hwnd, ULONG msg,
  38.                    MPARAM mp1, MPARAM mp2);
  39.  
  40.