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
42acc339
Commit
42acc339
authored
Jun 24, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split bidi16.c and network.c out of misc/ into their respective dlls.
parent
e482eebf
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
129 additions
and
125 deletions
+129
-125
Makefile.in
dlls/gdi/Makefile.in
+1
-0
bidi16.c
dlls/gdi/bidi16.c
+119
-0
Makefile.in
dlls/user/Makefile.in
+2
-0
bidi16.c
dlls/user/bidi16.c
+7
-123
network.c
dlls/user/network.c
+0
-0
Makefile.in
misc/Makefile.in
+0
-2
No files found.
dlls/gdi/Makefile.in
View file @
42acc339
...
...
@@ -7,6 +7,7 @@ SOVERSION = 1.0
ALTNAMES
=
gdi dispdib
C_SRCS
=
\
bidi16.c
\
gdi_main.c
\
thunk.c
...
...
dlls/gdi/bidi16.c
0 → 100644
View file @
42acc339
/*
* Win16 BiDi functions
* Right now, most of these functions do nothing.
*/
#include "windef.h"
#include "wingdi.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
gdi
);
/***********************************************************************
* RawTextOut16 (GDI.530)
*/
LONG
WINAPI
RawTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* RawExtTextOut16 (GDI.531)
*/
LONG
WINAPI
RawExtTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* RawGetTextExtent16 (GDI.532)
*/
LONG
WINAPI
RawGetTextExtent16
(
HDC16
hdc
,
LPCSTR
lpszString
,
INT16
cbString
)
{
FIXME
(
"(%04hx, %p, %hd): stub
\n
"
,
hdc
,
lpszString
,
cbString
);
return
0
;
}
/***********************************************************************
* BiDiLayout16 (GDI.536)
*/
LONG
WINAPI
BiDiLayout16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiCreateTabString16 (GDI.538)
*/
LONG
WINAPI
BiDiCreateTabString16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGlyphOut16 (GDI.540)
*/
LONG
WINAPI
BiDiGlyphOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGetStringExtent16 (GDI.543)
*/
LONG
WINAPI
BiDiGetStringExtent16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiDeleteString16 (GDI.555)
*/
LONG
WINAPI
BiDiDeleteString16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiSetDefaults16 (GDI.556)
*/
LONG
WINAPI
BiDiSetDefaults16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGetDefaults16 (GDI.558)
*/
LONG
WINAPI
BiDiGetDefaults16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiShape16 (GDI.560)
*/
LONG
WINAPI
BiDiShape16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiFontComplement16 (GDI.561)
*/
LONG
WINAPI
BiDiFontComplement16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiSetKashida16 (GDI.564)
*/
LONG
WINAPI
BiDiSetKashida16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiKExtTextOut16 (GDI.565)
*/
LONG
WINAPI
BiDiKExtTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiShapeEx16 (GDI.566)
*/
LONG
WINAPI
BiDiShapeEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiCreateStringEx16 (GDI.569)
*/
LONG
WINAPI
BiDiCreateStringEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* GetTextExtentRtoL16 (GDI.571)
*/
LONG
WINAPI
GetTextExtentRtoL16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* GetHDCCharSet16 (GDI.572)
*/
LONG
WINAPI
GetHDCCharSet16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiLayoutEx16 (GDI.573)
*/
LONG
WINAPI
BiDiLayoutEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* SetLayout16 (GDI.1000)
*
* Sets left->right or right->left text layout flags of a dc.
*/
BOOL16
WINAPI
SetLayout16
(
HDC16
hdc
,
DWORD
layout
)
{
FIXME
(
"( %04hx, %08lx ): No BiDi16
\n
"
,
hdc
,
layout
);
return
SetLayout
(
hdc
,
layout
);
}
dlls/user/Makefile.in
View file @
42acc339
...
...
@@ -8,10 +8,12 @@ WRCEXTRA = -w16 -m
ALTNAMES
=
user keyboard ddeml display mouse
C_SRCS
=
\
bidi16.c
\
ddeml.c
\
display.c
\
exticon.c
\
mouse.c
\
network.c
\
user_main.c
\
thunk.c
...
...
misc
/bidi16.c
→
dlls/user
/bidi16.c
View file @
42acc339
...
...
@@ -3,118 +3,22 @@
* Right now, most of these functions do nothing.
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winerror.h"
#include "debugtools.h"
#include "windows.h"
DEFAULT_DEBUG_CHANNEL
(
relay
)
DEFAULT_DEBUG_CHANNEL
(
relay
)
;
/***********************************************************************
* RawTextOut16
*/
LONG
WINAPI
RawTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* RawExtTextOut16
*/
LONG
WINAPI
RawExtTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* RawGetTextExtent16
*/
LONG
WINAPI
RawGetTextExtent16
(
HDC16
hdc
,
LPCSTR
lpszString
,
INT16
cbString
)
{
FIXME
(
"(%04hx, %p, %hd): stub
\n
"
,
hdc
,
lpszString
,
cbString
);
return
0
;
}
/***********************************************************************
* BiDiLayout16
*/
LONG
WINAPI
BiDiLayout16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiCreateTabString16
*/
LONG
WINAPI
BiDiCreateTabString16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGlyphOut16
*/
LONG
WINAPI
BiDiGlyphOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGetStringExtent16
*/
LONG
WINAPI
BiDiGetStringExtent16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiDeleteString16
*/
LONG
WINAPI
BiDiDeleteString16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiSetDefaults16
*/
LONG
WINAPI
BiDiSetDefaults16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiGetDefaults16
*/
LONG
WINAPI
BiDiGetDefaults16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiShape16
*/
LONG
WINAPI
BiDiShape16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiFontComplement16
*/
LONG
WINAPI
BiDiFontComplement16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiSetKashida16
*/
LONG
WINAPI
BiDiSetKashida16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiKExtTextOut16
*/
LONG
WINAPI
BiDiKExtTextOut16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiShapeEx16
*/
LONG
WINAPI
BiDiShapeEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiCreateStringEx16
*/
LONG
WINAPI
BiDiCreateStringEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* GetTextExtentRtoL16
*/
LONG
WINAPI
GetTextExtentRtoL16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* GetHDCCharSet16
*/
LONG
WINAPI
GetHDCCharSet16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiLayoutEx16
*/
LONG
WINAPI
BiDiLayoutEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* ChangeDialogTemplate16
* ChangeDialogTemplate16 (USER.905)
* FIXME: The prototypes of this function have not been found yet.
*/
LONG
WINAPI
ChangeDialogTemplate16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
/***********************************************************************
* BiDiMessageBoxEx16
* BiDiMessageBoxEx16
(USER.910)
* FIXME: The prototypes of this function have not been found yet.
*/
LONG
WINAPI
BiDiMessageBoxEx16
(
void
)
{
FIXME
(
"stub (no prototype)
\n
"
);
return
0
;
}
...
...
@@ -348,7 +252,6 @@ LRESULT WINAPI QueryCodePage16( UINT16 idxLang, UINT16 msg,
return
0
;
}
/***********************************************************************
* SetAppCodePage16 [USER.920]
* Set the code page and language of the window to new values.
...
...
@@ -364,8 +267,6 @@ DWORD WINAPI SetAppCodePage16( HWND16 hwnd, UINT16 iCodePage, UINT16 iLang,
return
0
;
}
/***********************************************************************
* SetDlgItemTextEx16 [USER.911]
* Sets the title or text of a control in a dialog box.
...
...
@@ -377,21 +278,6 @@ void WINAPI SetDlgItemTextEx16( HWND16 hwnd, INT16 id,
FIXME
(
"( %04hx, %hd, %p, %hu ): stub
\n
"
,
hwnd
,
id
,
lpszText
,
iLang
);
}
/***********************************************************************
* SetLayout16 [GDI.1000]
*
* Sets left->right or right->left text layout flags of a dc.
*/
BOOL16
WINAPI
SetLayout16
(
HDC16
hdc
,
DWORD
layout
)
{
FIXME
(
"( %04hx, %08lx ): No BiDi16
\n
"
,
hdc
,
layout
);
return
SetLayout
(
hdc
,
layout
);
}
/******************************************************************************
* SetProcessDefaultLayout16 [USER.1000]
*
...
...
@@ -408,7 +294,6 @@ BOOL16 WINAPI SetProcessDefaultLayout16( DWORD dwDefaultLayout )
return
SetProcessDefaultLayout
(
dwDefaultLayout
);
}
/******************************************************************************
* SetWindowTextEx16 [USER.909]
* Sets the given window's title to the specified text in the specified language.
...
...
@@ -417,4 +302,3 @@ void WINAPI SetWindowTextEx16( HWND16 hwnd, LPCSTR lpsz, UINT16 iLang )
{
FIXME
(
"( %04hx, %p, %hu ): stub
\n
"
,
hwnd
,
lpsz
,
iLang
);
}
misc
/network.c
→
dlls/user
/network.c
View file @
42acc339
File moved
misc/Makefile.in
View file @
42acc339
...
...
@@ -7,7 +7,6 @@ VPATH = @srcdir@
MODULE
=
misc
C_SRCS
=
\
bidi16.c
\
cdrom.c
\
comm.c
\
cpu.c
\
...
...
@@ -16,7 +15,6 @@ C_SRCS = \
ext_debugger.c
\
lstr.c
\
main.c
\
network.c
\
options.c
\
port.c
\
printdrv.c
\
...
...
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