Skip to content

Commit

Permalink
Use .def for function exports (#625)
Browse files Browse the repository at this point in the history
Cherry-picked from primedev

Co-authored-by: F1F7Y <[email protected]>
  • Loading branch information
ASpoonPlaysGames and F1F7Y authored Jan 3, 2024
1 parent eda88bd commit dcf6e1b
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 @@ -150,8 +150,8 @@ add_library(
"util/wininfo.cpp"
"util/wininfo.h"
"dllmain.cpp"
"dllmain.h"
"ns_version.h"
"Northstar.def"
)

target_link_libraries(
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 dcf6e1b

Please sign in to comment.