File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ version (Posix) {
71
71
import core.sys.posix.netdb ;
72
72
} else version (Win32 ) {
73
73
import std.c.windows.winsock ;
74
+ } else version (Win64 ) {
75
+ import std.c.windows.winsock ;
74
76
}
75
77
76
78
public import deimos.openssl.crypto;
Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ version (Win32) {
76
76
import std.c.windows.winsock ;
77
77
// #elif defined(OPENSSL_SYS_NETWARE) && !defined(_WINSOCK2API_)
78
78
// #include <sys/timeval.h>
79
+ } else version (Win64 ) {
80
+ import std.c.windows.winsock ;
79
81
} else {
80
82
import core.sys.posix.sys.time ;
81
83
}
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ public import deimos.openssl.e_os2;
66
66
67
67
version (Win32 ) {
68
68
import core.sys.windows.windows ;
69
+ } else version (Win64 ) {
70
+ import core.sys.windows.windows ;
69
71
}
70
72
71
73
extern (C ):
@@ -115,6 +117,9 @@ int RAND_poll();
115
117
version (Win32 ) {
116
118
void RAND_screen ();
117
119
int RAND_event (UINT , WPARAM , LPARAM );
120
+ } else version (Win64 ) {
121
+ void RAND_screen ();
122
+ int RAND_event (UINT , WPARAM , LPARAM );
118
123
}
119
124
120
125
/* BEGIN ERROR CODES */
You can’t perform that action at this time.
0 commit comments