Function getEmittedH [src]

Returns the path to the generated header file. This function can only be called for libraries or objects.

Prototype

pub fn getEmittedH(compile: *Compile) LazyPath

Parameters

compile: *Compile

Source

pub fn getEmittedH(compile: *Compile) LazyPath { assert(compile.kind != .exe and compile.kind != .@"test"); return compile.getEmittedFileGeneric(&compile.generated_h); }