# New Ticket Created by Will Coleda # Please include the string: [perl #44021] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=44021 >
Currently PCCMETHOD syntax looks like: PCCMETHOD void escape(STRING* str) { /* do something? */ PCCRETURN(STRING *result); } But, if you specify something other than 'void' for the return value, you get an error. So let's simplify the syntax to: PCCMETHOD escape(STRING* str) { /* do something? */ PCCRETURN(STRING *result); } -- Will "Coke" Coleda [EMAIL PROTECTED]