File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ This example showcases a number of things:
99## Description of Files
1010- ` TaskDialogDemo.asm ` -- the main code file
1111- ` resources.rc ` -- the resource script containing the demo dialog box definition and manifest
12- - ` resource.h ` -- produced by the resource compiler ; exports a list of resource constants for use in a C program
12+ - ` resource.h ` -- produced by VS2017 ; exports a list of resource constants for use in a C program
1313- ` resource.inc ` -- an adaptation of ` resource.h ` for use in ` TaskDialogDemo.asm `
1414- ` manifest.xml ` -- the manifest file, required by Windows to enable visual styles
1515
Original file line number Diff line number Diff line change 11
2- form at PE64 console 6 . 0
2+ form at PE64 GUI 6 . 0
33entry start
44
55 include "win64a.inc"
@@ -250,8 +250,6 @@ section '.text' code readable executable
250250 [ td_icon ], \
251251 td_result
252252
253- ; TODO
254-
255253 jmp .finishProcessed
256254
257255 .wmDestroy:
@@ -295,14 +293,10 @@ section '.idata' import data readable writeable
295293
296294 library kernel32 , 'KERNEL32.DLL' , \
297295 comctl32 , 'COMCTL32.DLL' , \
298- user32 , 'USER32.DLL' , \
299- msvcrt , 'MSVCRT.DLL'
296+ user32 , 'USER32.DLL'
300297
301298 include 'api/kernel32.inc'
302299 include 'api/user32.inc'
303300 include 'COMCTL32_TD_API.inc'
304301
305- import msvcrt , \
306- printf , 'printf'
307-
308302section '.rsrc' data readable resource from 'resources.res'
You can’t perform that action at this time.
0 commit comments