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 */ /* Microsoft Windows Extension function prototypes */
int WINAPI closesocket(SOCKET s);
INT WINAPI WSAStartup(UINT wVersionRequired, LPWSADATA lpWSAData); INT WINAPI WSAStartup(UINT wVersionRequired, LPWSADATA lpWSAData);
void WINAPI WSASetLastError(INT iError); void WINAPI WSASetLastError(INT iError);
INT WINAPI WSACleanup(void); INT WINAPI WSACleanup(void);

View file

@ -1404,8 +1404,10 @@ sub generate_spec_file
return; return;
} }
my $canon=canonize($basename); my $module=$basename;
print FILEO "name $canon\n"; $module =~ s+^lib++;
$module=canonize($module);
print FILEO "name $module\n";
print FILEO "type win32\n"; print FILEO "type win32\n";
if (@$target[$T_TYPE] == $TT_GUIEXE) { if (@$target[$T_TYPE] == $TT_GUIEXE) {
print FILEO "mode guiexe\n"; print FILEO "mode guiexe\n";
@ -2793,7 +2795,7 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy
-cd `dirname $@` && $(RM) $(CLEAN_FILES) -cd `dirname $@` && $(RM) $(CLEAN_FILES)
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__) 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 # Rules for installing