Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a11664cc
Commit
a11664cc
authored
Dec 07, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 07, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a prototype for closesocket.
parent
037fd57c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
winsock.h
include/winsock.h
+2
-0
winemaker
tools/winemaker
+5
-3
No files found.
include/winsock.h
View file @
a11664cc
...
@@ -375,6 +375,8 @@ extern "C" {
...
@@ -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
);
...
...
tools/winemaker
View file @
a11664cc
...
@@ -1404,8 +1404,10 @@ sub generate_spec_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
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment