Diff for /np2/win9x/dialog/d_screen.cpp between versions 1.16 and 1.18

version 1.16, 2007/12/17 14:52:55 version 1.18, 2011/03/07 09:54:11
Line 1 Line 1
 #include        "compiler.h"  /**
 #include        <commctrl.h>   * @file        d_screen.cpp
 #include        <prsht.h>   * @brief       Screen configure dialog procedure
 #include        "strres.h"   *
 #include        "resource.h"   * @author      $Author$
 #include        "np2.h"   * @date        $Date$
 #include        "oemtext.h"   */
 #include        "scrnmng.h"  
 #include        "sysmng.h"  #include "compiler.h"
 #include        "np2class.h"  #include <commctrl.h>
 #include        "dialog.h"  #include <prsht.h>
 #include        "dialogs.h"  #include "strres.h"
 #include        "pccore.h"  #include "resource.h"
 #include        "iocore.h"  #include "np2.h"
 #include        "scrndraw.h"  #include "oemtext.h"
 #include        "palettes.h"  #include "scrnmng.h"
   #include "sysmng.h"
   #include "np2class.h"
   #include "dialog.h"
   #include "dialogs.h"
   #include "pccore.h"
   #include "iocore.h"
   #include "scrndraw.h"
   #include "palettes.h"
   
   #if !defined(__GNUC__)
   #pragma comment(lib, "comctl32.lib")
   #endif  // !defined(__GNUC__)
   
 static LRESULT CALLBACK Scropt1DlgProc(HWND hWnd, UINT msg,  static LRESULT CALLBACK Scropt1DlgProc(HWND hWnd, UINT msg,
                                                                                                         WPARAM wp, LPARAM lp) {                                                                                                          WPARAM wp, LPARAM lp) {
Line 355  void dialog_scropt(HWND hWnd) Line 366  void dialog_scropt(HWND hWnd)
         psp.pfnDlgProc = (DLGPROC)ScroptFullScreenDlgProc;          psp.pfnDlgProc = (DLGPROC)ScroptFullScreenDlgProc;
         hpsp[3] = CreatePropertySheetPage(&psp);          hpsp[3] = CreatePropertySheetPage(&psp);
   
         loadstringresource(hInstance, IDS_SCREENOPTION, szTitle, NELEMENTS(szTitle));          loadstringresource(IDS_SCREENOPTION, szTitle, NELEMENTS(szTitle));
   
         ZeroMemory(&psh, sizeof(psh));          ZeroMemory(&psh, sizeof(psh));
         psh.dwSize = sizeof(PROPSHEETHEADER);          psh.dwSize = sizeof(PROPSHEETHEADER);

Removed from v.1.16  
changed lines
  Added in v.1.18


RetroPC.NET-CVS <cvs@retropc.net>