For example,
Code: Select all
acc.exe -h Main.acs
- Main.acs
Library.acs
Code: Select all
#import "Library.acs" Script 1(void) { TestFunction(); }
Inc.acsCode: Select all
#library "Library" #include "Inc.acs" // Here is my problem
Code: Select all
Function void TestFunction(void) { }
- Main.acs
Library.acs
Code: Select all
#import "Library.acs" Script 1(void) { TestFunction(); }
Inc.acsCode: Select all
#library "Library" Function void TestFunction(void) { }
Code: Select all
// Not necessary