Skip to content

Commit

Permalink
update api
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Aug 13, 2024
1 parent 17a2732 commit 44abe1d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CodeFormatCSharpLib/src/CodeFormatCSharpLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,9 @@ EMMY_API void UpdateCodeStyle(const char *workspaceUri, const char *configPath)
CodeFormat &codeFormat = CodeFormat::GetInstance();
codeFormat.UpdateCodeStyle(workspaceUri, configPath);
}

EMMY_API void RemoveCodeStyle(const char *workspaceUri) {
CodeFormat &codeFormat = CodeFormat::GetInstance();
codeFormat.RemoveCodeStyle(workspaceUri);
}
}

0 comments on commit 44abe1d

Please sign in to comment.