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
7bff19ea
Commit
7bff19ea
authored
Dec 02, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Dec 02, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added FIXME:s in the stubs.
parent
41fcb0bb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
8 deletions
+67
-8
Makefile.in
dlls/cabinet/Makefile.in
+1
-0
fci.c
dlls/cabinet/fci.c
+32
-3
fdi.c
dlls/cabinet/fdi.c
+32
-3
fci.h
include/fci.h
+1
-1
fdi.h
include/fdi.h
+1
-1
No files found.
dlls/cabinet/Makefile.in
View file @
7bff19ea
...
...
@@ -3,6 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
cabinet.dll
IMPORTS
=
kernel32
LDDLLFLAGS
=
@LDDLLFLAGS@
SYMBOLFILE
=
$(MODULE)
.tmp.o
...
...
dlls/cabinet/fci.c
View file @
7bff19ea
...
...
@@ -21,6 +21,8 @@
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "fci.h"
#include "wine/debug.h"
...
...
@@ -45,6 +47,16 @@ HFCI __cdecl FCICreate(
PCCAB
pccab
,
void
*
pv
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p, %p, %p, %p, %p, %p, %p, %p): stub
\n
"
,
perf
,
pfnfcifp
,
pfna
,
pfnf
,
pfnopen
,
pfnread
,
pfnwrite
,
pfnclose
,
pfnseek
,
pfndelete
,
pfnfcigtf
,
pccab
,
pv
);
perf
->
erfOper
=
FCIERR_NONE
;
perf
->
erfType
=
0
;
perf
->
fError
=
TRUE
;
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
...
...
@@ -61,6 +73,11 @@ BOOL __cdecl FCIAddFile(
PFNFCIGETOPENINFO
pfnfcigoi
,
TCOMP
typeCompress
)
{
FIXME
(
"(%p, %p, %p, %d, %p, %p, %p, %hu): stub
\n
"
,
hfci
,
pszSourceFile
,
pszFileName
,
fExecute
,
pfnfcignc
,
pfnfcis
,
pfnfcigoi
,
typeCompress
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -73,7 +90,11 @@ BOOL __cdecl FCIFlushCabinet(
PFNFCIGETNEXTCABINET
pfnfcignc
,
PFNFCISTATUS
pfnfcis
)
{
return
FALSE
;
FIXME
(
"(%p, %d, %p, %p): stub
\n
"
,
hfci
,
fGetNextCab
,
pfnfcignc
,
pfnfcis
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
...
...
@@ -84,7 +105,11 @@ BOOL __cdecl FCIFlushFolder(
PFNFCIGETNEXTCABINET
pfnfcignc
,
PFNFCISTATUS
pfnfcis
)
{
return
FALSE
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
hfci
,
pfnfcignc
,
pfnfcis
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
...
...
@@ -92,5 +117,9 @@ BOOL __cdecl FCIFlushFolder(
*/
BOOL
__cdecl
FCIDestroy
(
HFCI
hfci
)
{
return
FALSE
;
FIXME
(
"(%p): stub
\n
"
,
hfci
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/cabinet/fdi.c
View file @
7bff19ea
...
...
@@ -21,6 +21,8 @@
#include "config.h"
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "fdi.h"
#include "wine/debug.h"
...
...
@@ -41,23 +43,37 @@ HFDI __cdecl FDICreate(
int
cpuType
,
PERF
perf
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p, %p, %d, %p): stub
\n
"
,
pfnalloc
,
pfnfree
,
pfnopen
,
pfnread
,
pfnwrite
,
pfnclose
,
pfnseek
,
cpuType
,
perf
);
perf
->
erfOper
=
FDIERROR_NONE
;
perf
->
erfType
=
0
;
perf
->
fError
=
TRUE
;
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
}
/***********************************************************************
* FDI
Create (CABINET.20
)
* FDI
IsCabinet (CABINET.21
)
*/
BOOL
__cdecl
FDIIsCabinet
(
HFDI
hfdi
,
INT_PTR
hf
,
PFDICABINETINFO
pfdici
)
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
hfdi
,
hf
,
pfdici
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* FDIC
reate (CABINET.20
)
* FDIC
opy (CABINET.22
)
*/
BOOL
__cdecl
FDICopy
(
HFDI
hfdi
,
...
...
@@ -68,14 +84,23 @@ BOOL __cdecl FDICopy(
PFNFDIDECRYPT
pfnfdid
,
void
*
pvUser
)
{
FIXME
(
"(%p, %p, %p, %d, %p, %p, %p): stub
\n
"
,
hfdi
,
pszCabinet
,
pszCabPath
,
flags
,
pfnfdin
,
pfnfdid
,
pvUser
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* FDI
Create (CABINET.20
)
* FDI
Destroy (CABINET.23
)
*/
BOOL
__cdecl
FDIDestroy
(
HFDI
hfdi
)
{
FIXME
(
"(%p): stub
\n
"
,
hfdi
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -87,5 +112,9 @@ BOOL __cdecl FDITruncateCabinet(
char
*
pszCabinetName
,
USHORT
iFolderToDelete
)
{
FIXME
(
"(%p, %p, %hu): stub
\n
"
,
hfdi
,
pszCabinetName
,
iFolderToDelete
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
include/fci.h
View file @
7bff19ea
...
...
@@ -43,7 +43,7 @@ typedef struct {
int
erfOper
;
/* FCI/FDI error code - see {FCI,FDI}ERROR_XXX for details. */
int
erfType
;
/* Optional error value filled in by FCI/FDI. */
BOOL
fError
;
/* TRUE => error present */
}
ERF
,
PERF
;
}
ERF
,
*
PERF
;
/**********************************************************************/
...
...
include/fdi.h
View file @
7bff19ea
...
...
@@ -43,7 +43,7 @@ typedef struct {
int
erfOper
;
/* FCI/FDI error code - see {FCI,FDI}ERROR_XXX for details. */
int
erfType
;
/* Optional error value filled in by FCI/FDI. */
BOOL
fError
;
/* TRUE => error present */
}
ERF
,
PERF
;
}
ERF
,
*
PERF
;
/**********************************************************************/
...
...
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