preprocessFileLineNumbers: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 10: Line 10:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[String]] <nowiki>=</nowiki> '''preprocessFileLineNumbers''' "filename" |= Syntax
| [[String]] <nowiki>=</nowiki> '''preprocessFileLineNumbers''' fileName |= Syntax


|p1= filename: [[String]] |= Parameter 1
|p1= fileName: [[String]] |= Parameter 1


| [[String]] |= Return value
| [[String]] |= Return value

Revision as of 01:06, 24 January 2009

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Returns the preprocessed content of the given file. The preprocessor is C-like, it supports comments using // or /* and */ and macros defined with #define.
Groups:
Uncategorised

Syntax

Syntax:
String = preprocessFileLineNumbers fileName
Parameters:
fileName: String
Return Value:
String

Examples

Example 1:

_string = preprocessFileLineNumbers "myFunction.sqf" Result is "if a>b then {a} else {b}"

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section