Create a missing program implementation

When you create a program, it contains the forward declaration and the implementation. The forward declaration contains the
extern
keyword, such as
extern program myProgram()[];
.
If the forward declaration is specified but the implementation does not exist, you receive the error
Missing implementation for external program ProgramName. Add a valid implementation. Error code: DS0171.
You must create the missing program implementation file to resolve this error.
To create a missing program implementation
  1. Open the Code Editor from the program element by right clicking the element and selecting
    Code Editor
    .
  2. In the Code Editor, navigate to the line number and Character column where you want to create the missing program implementation.
  3. Select action icon to the left of the component with the missing implementation to open the Code Actions menu.
  4. Select
    Create missing program implementation
    .
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal