Changeset 763 in dev for trunk/ab5.0/abdev/abdev/Print.cpp


Ignore:
Timestamp:
Nov 6, 2008, 10:22:26 PM (15 years ago)
Author:
イグトランス (egtra)
Message:

#228試行

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/Print.cpp

    r629 r763  
    33#include "common.h"
    44
     5HRESULT ApplyDialogTexture( HWND );
    56
    67int iPreviewNowPage;
     
    391392    return DefWindowProc(hwnd,message,wParam,lParam);
    392393}
    393 BOOL CALLBACK DlgPreview(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam){
     394INT_PTR CALLBACK DlgPreview(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam){
    394395    static HWND hPreview;
    395396    char temporary[255];
     
    430431            SendMessage(hPreview,WM_RESETPREVIEW,0,0);
    431432
     433            ApplyDialogTexture(hwnd);
    432434            break;
    433435        case WM_COMMAND:
     
    520522
    521523void Preview(void){
    522     DialogBox(hResInst,MAKEINTRESOURCE(IDD_PREVIEW),hOwner,(DLGPROC)DlgPreview);
     524    DialogBox(hResInst,MAKEINTRESOURCE(IDD_PREVIEW),hOwner,DlgPreview);
    523525}
    524526
Note: See TracChangeset for help on using the changeset viewer.