Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/devkit/WINDOWS/SAMPLES/TECHOS.DEF
Дата изменения: Thu May 7 21:03:18 1992
Дата индексирования: Thu Jan 15 16:28:45 2009
Кодировка:
;
; $Header: K:/21vcs/srccmd/samples.win/techos.dev 1.3 07 May 1992 13:03:18 arnoff $
;

; Copyright (C) 1991-1992 by FTP Software, Inc.
;
; 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.
;
;
; EDIT HISTORY:
; 20-Sep-90 msd@ayuda Original author.
; 04-Oct-90 msd@ayuda First pre-release.
; 01-Apr-91 msd@ayuda To FTP for 2.05 pl 2 beta.
; 06-May-92 ftp DevKit 2.1 beta.
;

; module-definition file for PC/TCP TCP ECHO Server -- used by LINK.EXE

NAME TECHOS ; application's module name

DESCRIPTION 'TCP ECHO Server'

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 4096
STACKSIZE 5120 ; recommended minimum for Windows applications


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

EXPORTS
MainWndProc @1 ; name of window processing function
About @2 ; name of "About" processing function

; eof

;
; $Log: K:/21vcs/srccmd/samples.win/techos.dev $
;
; Rev 1.3 07 May 1992 13:03:18 arnoff
;Fixed pvcs comment character. ---Ben
;
; Rev 1.2 06 May 1992 16:08:10 arnoff
; * 06-May-92 ftp DevKit 2.1 beta.
;
; Rev 1.1 03 Feb 1992 22:01:32 arnoff
; pre beta-2 testing freeze
;
; Rev 1.0 29 Jan 1992 22:47:28 arnoff
;
;