Download Pelles C here: http://www.smorgasbordet.com/pellesc/
Quote from: MrBcx on Yesterday at 04:37:01 PMConfirmed:"...so you wanted <fileapifromapp.h> to be included in the Setup? Why didn't you say so...?"
C:\PellesC\Include\Win\winbase.h(23): fatal error #1035: Can't find #include file <fileapifromapp.h>.
Quote from: MrBcx on Yesterday at 04:26:01 PMVery happy to learn that you're alive and (presumably) well and still interested in this project that you started 20+ years ago.Cool, thanks.
Our cohort grows smaller each year but our friends have come to rely on us being there for them.
Quote from: TimoVJL on Yesterday at 02:34:55 PMThanksThank you.
Quote from: TimoVJL on Yesterday at 02:34:55 PMWhat features we should to test first ?Well... apparently the Windows API include files! They are all new...
E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 SaveBmpFromHandle.asm
E:\PellesC\sample\SaveBmpFromHandle.asm(9): error: Must be a constant integer expression.
E:\PellesC\sample\SaveBmpFromHandle.asm(37): error: Invalid use of ','.
E:\PellesC\sample\SaveBmpFromHandle.asm(37): error: Invalid use of ','.
E:\PellesC\sample\SaveBmpFromHandle.inc(242): fatal error: Invalid use of ')'.
E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 Demo.asm
E:\PellesC\sample\Demo.asm(20): error: Must be a constant integer expression.
E:\PellesC\sample\Demo.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\Demo.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.
E:\PellesC\sample>\PellesC\bin\poasm /AAMD64 WriteFileToDisc.asm
E:\PellesC\sample\WriteFileToDisc.asm(13): error: Must be a constant integer expression.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can only hold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(26): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.
E:\PellesC\sample\WriteFileToDisc.asm(37): error: Stack parameter area can onlyhold 0 entries: increase value of PARMAREA.
.386
.model flat,stdcall
option casemap:none
ExitProcess PROTO :DWORD
printf PROTO C :DWORD,:VARARG
includelib \PellesC\lib\Win\kernel32.lib
includelib msvcrt.lib
level=1
@CatStr(Sample,level) CATSTR test,level
.echo @CatStr(Sample,level)
.echo Sample1
.data
string db 'Hello world!'
.code
start:
invoke ExitProcess,0
END start
<Sample1>
<test1>
.
.
level=1
@CatStr(<Sample>,level) CATSTR <test>,level
.echo @CatStr(<Sample>,level)
.echo Sample1
.
.
<Sample1>
<test1>
Sample1
test1
Quote/OThanks!
rSpecifies the name of the output file.
Page created in 0.022 seconds with 11 queries.