home *** CD-ROM | disk | FTP | other *** search
- Page 60,190
- TITLE ASM Skeleton - Module title here.
- SUBTTL General info and includes.
- ; ============================================================================
- ; General module purpose and comments.
- ;
- ; ============================================================================
- ; $Id: Skeleton.asm 1.1 1997/09/02 09:50:48 Philippe Exp $
- ; ============================================================================
- ; Created on 30.10.96 by Philippe Auphelle
- ; $Log: /Win32Equ/Skeleton.asm $
- ;
- ; 1 18/09/97 14:24 Philippe
- ; Initial checkin into SourceSafe.
- ; Revision 1.1 1997/09/02 09:50:48 Philippe
- ; Initial revision
- ;
- ; ============================================================================
-
-
-
- ; ============================================================================
- ; ToDo List:
- ; - ...
- ; ============================================================================
-
-
- .586
- .MODEL FLAT,STDCALL
-
- .NOLISTMACRO
- .NOLIST
-
- UniCode = 0
-
- INCLUDE INSTR32.MAC
- INCLUDE WIN32INC.EQU
-
- INCLUDE KERNEL32.EQU
-
- .LIST
-
- .CODE
-
-
- SUBTTL Global constants and data.
- PAGE
- ; ============================================================================
- ; Global Constants and data.
- ; ============================================================================
-
- .CONST
-
- .DATA
-
- ALIGN DWORD
-
- SUBTTL Main (public) routines.
- PAGE
- ; ============================================================================
- ; First procedure.
- ; ============================================================================
-
- .CONST
-
- MsgDone BYTE 'All done. Press <Enter> to continue.',
- CR,LF
-
- %MsgSignon BYTE 'Signon message - ',
- '&@Date &@Time', ;Generates assembly date/time here.
- CR,LF,LF
-
- .DATA
-
-
- .CODE
-
- Skel PROC
-
- RET
-
- Skel ENDP
-
- SUBTTL Utility (internal) routines.
- PAGE
- ; ============================================================================
- ; Internal tools.
- ; ============================================================================
-
- .CODE
-
-
- END
-