Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Jan 24, 2023
1 parent 2ee03de commit b6ef15a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ascurl/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME /* now */,
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif
2 changes: 2 additions & 0 deletions asext/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME /* now */,
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif
2 changes: 2 additions & 0 deletions asqcvar/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME /* now */,
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif
2 changes: 2 additions & 0 deletions asusermsg/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME /* now */,
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif
2 changes: 2 additions & 0 deletions fallguys/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,5 +234,7 @@ C_DLLEXPORT int Meta_Detach(PLUG_LOADTIME /* now */,
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif
9 changes: 9 additions & 0 deletions metamod/metamod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,3 +516,12 @@ mBOOL DLLINTERNAL meta_load_gamedll(void) {

return(mTRUE);
}

#ifdef PLATFORM_POSIX
C_DLLEXPORT void meta_linkdl()
{
DLOPEN("");
DLSYM(NULL, "");
DLCLOSE(NULL);
}
#endif

0 comments on commit b6ef15a

Please sign in to comment.