Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use .def for function exports #625

Merged
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.