Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/devkit/WINDOWS/WPING/WPING.DEF
Дата изменения: Sat Aug 7 06:25:46 1993
Дата индексирования: Thu Jan 15 16:20:10 2009
Кодировка:

Поисковые слова: п п п п п п п п
;
; $Header: J:\devkit.dos\vcs\srcsmpl\wping\src\wping.dev 1.0 06 Aug 1993 22:25:46 arnoff $
;

;
; Copyright (C) 1986-1993 by FTP Software, Inc. All rights reserved.
;
; This software is furnished under a license and may be used and copied
; only in accordance with the terms of such license and with the
; inclusion of the above copyright notice. This software or any other
; copies thereof may not be provided or otherwise made available to any
; other person. No title to and ownership of the software is hereby
; transferred.
;
; The information in this software is subject to change without notice
; and should not be construed as a commitment by FTP Software, Inc.
;
; Abstract:

; Edit History:
; 07-Jul-92 MPR Changed name from GENERIC to WPING, it looks better in the
; task list to have a FTP name. SHEESH!

NAME WPING ; application's module name

DESCRIPTION 'FTP Software Windows Ping Program'

EXETYPE WINDOWS ; required for all Windows applications

STUB 'WINSTUB.EXE' ; Generates error message if application
; is run without Windows

;CODE can be moved in memory and discarded/reloaded
CODE PRELOAD MOVEABLE DISCARDABLE

;DATA must be MULTIPLE if program can be invoked more than once
DATA PRELOAD MOVEABLE MULTIPLE


HEAPSIZE 1024
STACKSIZE 5120 ; recommended minimum for Windows applications


; All functions that will be called by any Windows routine
; MUST be exported.

EXPORTS
AppWndProc @1 ; name of main window processing function
About @2 ; name of "About" processing function
MainDlgBoxProc @3 ; name of dialog box processing function

;
; $Log: J:\devkit.dos\vcs\srcsmpl\wping\src\wping.dev $
;
; Rev 1.0 06 Aug 1993 22:25:46 arnoff
; Initial revision.
;
; Rev 1.2 29 Jan 1993 16:36:40 davec
; Updated copyright notice.
;
; Rev 1.1 09 Jul 1992 13:55:10 arnoff
; ; 07-Jul-92 MPR Changed name from GENERIC to WPING, it looks better in the
; ; task list to have a FTP name. SHEESH!
;
;
; Rev 1.0 03 Feb 1992 22:22:50 arnoff
; pre beta-2 testing freeze
;