mirror of
https://github.com/wiiu-env/libcontentredirection.git
synced 2024-11-22 03:19:18 +01:00
Add ContentRedirection_DeInitLibrary
This commit is contained in:
parent
14576d207c
commit
d6de8b7504
@ -74,6 +74,8 @@ const char *ContentRedirection_GetStatusStr(ContentRedirectionStatus status);
|
|||||||
*/
|
*/
|
||||||
ContentRedirectionStatus ContentRedirection_InitLibrary();
|
ContentRedirectionStatus ContentRedirection_InitLibrary();
|
||||||
|
|
||||||
|
ContentRedirectionStatus ContentRedirection_DeInitLibrary();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the API Version of the loaded ContentRedirectionModule.<br>
|
* Retrieves the API Version of the loaded ContentRedirectionModule.<br>
|
||||||
* <br>
|
* <br>
|
||||||
|
@ -83,6 +83,10 @@ ContentRedirectionStatus ContentRedirection_InitLibrary() {
|
|||||||
return CONTENT_REDIRECTION_RESULT_SUCCESS;
|
return CONTENT_REDIRECTION_RESULT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ContentRedirectionStatus ContentRedirection_DeInitLibrary() {
|
||||||
|
return CONTENT_REDIRECTION_RESULT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
ContentRedirectionApiErrorType GetVersion(ContentRedirectionVersion *);
|
ContentRedirectionApiErrorType GetVersion(ContentRedirectionVersion *);
|
||||||
ContentRedirectionStatus ContentRedirection_GetVersion(ContentRedirectionVersion *outVariable) {
|
ContentRedirectionStatus ContentRedirection_GetVersion(ContentRedirectionVersion *outVariable) {
|
||||||
if (sCRGetVersion == nullptr) {
|
if (sCRGetVersion == nullptr) {
|
||||||
|
Loading…
Reference in New Issue
Block a user