Skip to content

Commit

Permalink
Use .def for function exports
Browse files Browse the repository at this point in the history
  • Loading branch information
F1F7Y authored and ASpoonPlaysGames committed Dec 21, 2023
1 parent 7bb8789 commit 8fd154f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion primedev/Northstar.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ add_library(NorthstarDLL SHARED
"util/wininfo.cpp"
"util/wininfo.h"
"dllmain.cpp"
"dllmain.h"
"ns_version.h"
"Northstar.def"
)

target_link_libraries(NorthstarDLL PRIVATE
Expand Down
4 changes: 4 additions & 0 deletions primedev/Northstar.def
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LIBRARY dedicated

EXPORTS
InitialiseNorthstar @1
1 change: 0 additions & 1 deletion primedev/dllmain.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include "dllmain.h"
#include "logging/logging.h"
#include "logging/crashhandler.h"
#include "core/memalloc.h"
Expand Down
3 changes: 0 additions & 3 deletions primedev/dllmain.h

This file was deleted.

0 comments on commit 8fd154f

Please sign in to comment.