Skip to content

Commit

Permalink
Update getAvailableOutputNodes (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjulek committed Sep 23, 2024
1 parent e1f4b22 commit 93239bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vsscript4.zig
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub const API = extern struct {
evalSetWorkingDir: ?*const fn (handle: ?*VSScript, set_cwd: c_int) callconv(.C) void,
/// Write a list of set output index values to dst but at most size values.
/// Always returns the total number of available output index values.
getAvailableOutputNodes: ?*const fn (handle: ?*VSScript, size: c_int, dst: ?*c_int) callconv(.C) c_int,
getAvailableOutputNodes: ?*const fn (handle: ?*VSScript, size: c_int, dst: ?[*]i32) callconv(.C) c_int,
};

pub extern fn getVSScriptAPI(version: c_int) ?*const API;

0 comments on commit 93239bd

Please sign in to comment.