Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
feb94cbb
Commit
feb94cbb
authored
Oct 24, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the include files self-sufficient.
parent
5b3b6d98
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
31 additions
and
8 deletions
+31
-8
authors.h
include/authors.h
+1
-1
comm.h
include/comm.h
+2
-0
datetime.h
include/datetime.h
+1
-0
monthcal.h
include/monthcal.h
+4
-0
netspi.h
include/netspi.h
+1
-0
ntsecapi.h
include/ntsecapi.h
+1
-0
psdrv.h
include/psdrv.h
+2
-0
obj_connection.h
include/wine/obj_connection.h
+1
-1
obj_oleundo.h
include/wine/obj_oleundo.h
+5
-1
obj_picture.h
include/wine/obj_picture.h
+2
-0
obj_property.h
include/wine/obj_property.h
+3
-2
obj_shellextinit.h
include/wine/obj_shellextinit.h
+1
-0
winnet16.h
include/wine/winnet16.h
+2
-0
winspool.h
include/winspool.h
+2
-2
xmalloc.h
include/xmalloc.h
+2
-0
make_authors
tools/make_authors
+1
-1
No files found.
include/authors.h
View file @
feb94cbb
...
...
@@ -253,7 +253,7 @@ static const char * const SHELL_People[] =
"Nathan Zorich"
,
"Luiz Otavio L. Zorzella"
,
"Per ngstrm"
,
NULL
0
};
#endif
/* __WINE_AUTHORS_H */
include/comm.h
View file @
feb94cbb
#ifndef __WINE_COMM_H
#define __WINE_COMM_H
#include "windef.h"
#define MAX_PORTS 9
struct
DosDeviceStruct
{
...
...
include/datetime.h
View file @
feb94cbb
...
...
@@ -9,6 +9,7 @@
#define __WINE_DATETIME_H
#include "windef.h"
#include "winbase.h"
typedef
struct
tagDATETIME_INFO
{
...
...
include/monthcal.h
View file @
feb94cbb
...
...
@@ -8,6 +8,10 @@
#ifndef __WINE_MONTHCAL_H
#define __WINE_MONTHCAL_H
#include "commctrl.h"
#include "windef.h"
#include "wingdi.h"
#define MC_SEL_LBUTUP 0
/* Left button released */
#define MC_SEL_LBUTDOWN 1
/* Left button pressed in calendar */
#define MC_PREVPRESSED 1
/* Prev month button pressed */
...
...
include/netspi.h
View file @
feb94cbb
...
...
@@ -6,6 +6,7 @@
#define _NETSPI_H_
#include "windef.h"
#include "winnetwk.h"
/*
* Note: The Unicode variants of all these routines/structures
...
...
include/ntsecapi.h
View file @
feb94cbb
...
...
@@ -2,6 +2,7 @@
#define __WINE_NTSECAPI_H
#include "ntdef.h"
#include "winnt.h"
#ifdef __cplusplus
extern
"C"
{
...
...
include/psdrv.h
View file @
feb94cbb
...
...
@@ -83,6 +83,8 @@ typedef struct {
float
x
,
y
;
}
PAPERDIMENSION
;
/* Solaris kludge */
#undef PAGESIZE
typedef
struct
_tagPAGESIZE
{
char
*
Name
;
char
*
FullName
;
...
...
include/wine/obj_connection.h
View file @
feb94cbb
...
...
@@ -7,7 +7,7 @@
#ifndef __WINE_WINE_OBJ_CONNECTION_H
#define __WINE_WINE_OBJ_CONNECTION_H
#include "wine/obj_base.h"
#include "winbase.h"
#ifdef __cplusplus
...
...
include/wine/obj_oleundo.h
View file @
feb94cbb
...
...
@@ -7,7 +7,11 @@
#ifndef __WINE_WINE_OBJ_OLEUNDO_H
#define __WINE_WINE_OBJ_OLEUNDO_H
#include "wine/obj_base.h"
#include "wine/obj_dataobject.h"
#include "wine/obj_inplace.h"
#include "wine/obj_olefont.h"
#include "wine/obj_property.h"
#include "winbase.h"
#ifdef __cplusplus
...
...
include/wine/obj_picture.h
View file @
feb94cbb
...
...
@@ -7,6 +7,8 @@
#ifndef __WINE_WINE_OBJ_PICTURE_H
#define __WINE_WINE_OBJ_PICTURE_H
#include "wine/obj_base.h"
#include "wine/obj_oleaut.h"
#include "windows.h"
#include "windef.h"
...
...
include/wine/obj_property.h
View file @
feb94cbb
...
...
@@ -7,9 +7,10 @@
#ifndef __WINE_WINE_OBJ_PROPERTY_H
#define __WINE_WINE_OBJ_PROPERTY_H
#include "winbase.h"
#include "wine/obj_oleaut.h"
/* for DISPID */
#include "wine/obj_storage.h"
#include "winbase.h"
#include "winuser.h"
#ifdef __cplusplus
extern
"C"
{
...
...
include/wine/obj_shellextinit.h
View file @
feb94cbb
...
...
@@ -5,6 +5,7 @@
#ifndef __WINE_WINE_OBJ_SHELLEXTINIT_H
#define __WINE_WINE_OBJ_SHELLEXTINIT_H
#include "shell.h"
#include "winbase.h"
#include "winuser.h"
#include "wine/obj_base.h"
...
...
include/wine/winnet16.h
View file @
feb94cbb
...
...
@@ -8,6 +8,8 @@
#ifndef __WINE_WINNET16_H
#define __WINE_WINNET16_H
#include "windef.h"
/*
* Remote printing
*/
...
...
include/winspool.h
View file @
feb94cbb
...
...
@@ -605,12 +605,12 @@ DECL_WINELIB_TYPE_AW(LPFORM_INFO_1)
typedef
struct
_PRINTPROCESSOR_INFO_1A
{
LPSTR
pName
;
}
PRINTPROCESSOR_INFO_1A
,
*
PPRINT
ER
PROCESSOR_INFO_1A
,
}
PRINTPROCESSOR_INFO_1A
,
*
PPRINTPROCESSOR_INFO_1A
,
*
LPPRINTPROCESSOR_INFO_1A
;
typedef
struct
_PRINTPROCESSOR_INFO_1W
{
LPWSTR
pName
;
}
PRINTPROCESSOR_INFO_1W
,
*
PPRINT
ER
PROCESSOR_INFO_1W
,
}
PRINTPROCESSOR_INFO_1W
,
*
PPRINTPROCESSOR_INFO_1W
,
*
LPPRINTPROCESSOR_INFO_1W
;
DECL_WINELIB_TYPE_AW
(
PRINTPROCESSOR_INFO_1
)
...
...
include/xmalloc.h
View file @
feb94cbb
...
...
@@ -5,6 +5,8 @@
extern
"C"
{
#endif
#include <sys/types.h>
void
*
xmalloc
(
size_t
size
);
void
*
xcalloc
(
size_t
size
);
void
*
xrealloc
(
void
*
ptr
,
size_t
size
);
...
...
tools/make_authors
View file @
feb94cbb
...
...
@@ -52,7 +52,7 @@ for ($i = 0; $i <= $#authors; $i++)
{
print
NEWAUTHORS_H
" \"$authors[$i]\",\n"
;
}
print
NEWAUTHORS_H
"
NULL
\n};\n"
;
print
NEWAUTHORS_H
"
0
\n};\n"
;
print
NEWAUTHORS_H
"\n#endif /* __WINE_AUTHORS_H */\n"
;
print
"Created include/authors.h\n"
;
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