[NTOS]: Fix stdCall macro to work with functions of zero parameters.

svn path=/trunk/; revision=44876
This commit is contained in:
ReactOS Portable Systems Group 2010-01-02 04:46:23 +00:00
parent 4247babde3
commit f9762a47d5

View file

@ -23,10 +23,11 @@
cCount = 0
.irp arg, \ArgList
cCount = cCount+1
.endr
.ifnb \ArgList
.irp arg, \ArgList
cCount = cCount+1
.endr
.endif
.endm
//