Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiask88 committed Mar 10, 2024
1 parent 6ccf6d9 commit 0844358
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/node_snap7_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@

#include <napi.h>
#include <snap7.h>

#ifdef OS_WINDOWS
# include <winsock2.h>
#endif

#if defined(PLATFORM_UNIX) || defined(OS_OSX)
# include <sys/socket.h>
# include <arpa/inet.h>
# include <netinet/in.h>
#endif

#include <mutex>
#include <map>

Expand Down

0 comments on commit 0844358

Please sign in to comment.