1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

Added a prototype for closesocket.

This commit is contained in:
Francois Gouget 2000-12-07 23:13:23 +00:00 committed by Alexandre Julliard
parent 037fd57c86
commit a11664cc9b
2 changed files with 7 additions and 3 deletions

View File

@ -375,6 +375,8 @@ extern "C" {
/* Microsoft Windows Extension function prototypes */
int WINAPI closesocket(SOCKET s);
INT WINAPI WSAStartup(UINT wVersionRequired, LPWSADATA lpWSAData);
void WINAPI WSASetLastError(INT iError);
INT WINAPI WSACleanup(void);

View File

@ -1404,8 +1404,10 @@ sub generate_spec_file
return;
}
my $canon=canonize($basename);
print FILEO "name $canon\n";
my $module=$basename;
$module =~ s+^lib++;
$module=canonize($module);
print FILEO "name $module\n";
print FILEO "type win32\n";
if (@$target[$T_TYPE] == $TT_GUIEXE) {
print FILEO "mode guiexe\n";
@ -2793,7 +2795,7 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy
-cd `dirname $@` && $(RM) $(CLEAN_FILES)
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(EXES) $(EXES:%=%.so) $(DLLS)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(SPEC_SRCS:.spec=.tmp.o) $(EXES) $(EXES:%=%.so) $(DLLS)
# Rules for installing