prntfile.def

来自「软件简介: Windows环境下文本文件的载入保存编缉的C语言源程序」· DEF 代码 · 共 21 行

DEF
21
字号
; Copyright 1991 Microsoft Coporation. All rights reserved.

NAME         PrntFile
DESCRIPTION  'Sample Microsoft Windows Application'
EXETYPE      WINDOWS
STUB         'WINSTUB.EXE'

CODE         PRELOAD MOVEABLE DISCARDABLE
DATA         PRELOAD MOVEABLE MULTIPLE

HEAPSIZE     0xAFFF    ; 45k
STACKSIZE    8192

EXPORTS
    MainWndProc     @1
    About           @2
    OpenDlg         @3
    SaveAsDlg       @4  ; called when SAVE AS menu item selected
    AbortDlg        @5  ; called so user can abort print function
    AbortProc       @6  ; Processes messages intended for abort box

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?