Download Pelles C here: http://www.smorgasbordet.com/pellesc/
QuoteMany applications create toolbars containing tools that correspond to menu commands. For such tools, it is convenient for the tooltip control to display the same text as the corresponding menu item. The system automatically strips the ampersand (&) accelerator characters from all strings passed to a tooltip control, and terminates the string at the first tab character (\t), unless the control has the TTS_NOPREFIX style.
.386
.model flat,stdcall
option casemap:none
COMM CommVar:DWORD
END
.386
.model flat,stdcall
option casemap:none
includelib \PellesC\Lib\Win\kernel32.lib
includelib \PellesC\Lib\Win\user32.lib
includelib msvcrt.lib
EXTERN CommVar:DWORD
printf PROTO C :DWORD,:VARARG
ExitProcess PROTO :DWORD
.data
msg db 'COMM variable = %u',0
.code
start:
mov CommVar,256
invoke printf,ADDR msg,CommVar
invoke ExitProcess,0
END start
Quote from: John Z on May 24, 2025, 02:26:24 PMWhat screen resolution are you using. 1920 x 1080 they look fine.
Page created in 0.022 seconds with 13 queries.