mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Sync to Wine-20050830:
Alexandre Julliard <julliard@winehq.org> - Don't prefix the functions DllCanUnloadNow, DllGetClassObject and Dll(Un)RegisterServer with the dll name so that the compiler can check the prototypes. Mike McCormack <mike@codeweavers.com> - Fix gcc 4.0 warnings. svn path=/trunk/; revision=17662
This commit is contained in:
parent
5d793513d1
commit
ae18f3a1cc
3 changed files with 20 additions and 20 deletions
|
@ -324,15 +324,15 @@ typedef struct {
|
|||
cab_ULONG cDataBlocks;
|
||||
cab_ULONG cbFileRemainer; /* uncompressed, yet to be written data */
|
||||
/* of spanned file of a spanning folder of a spanning cabinet */
|
||||
cab_UBYTE szFileNameCFDATA1[CB_MAX_FILENAME];
|
||||
char szFileNameCFDATA1[CB_MAX_FILENAME];
|
||||
int handleCFDATA1;
|
||||
cab_UBYTE szFileNameCFFILE1[CB_MAX_FILENAME];
|
||||
char szFileNameCFFILE1[CB_MAX_FILENAME];
|
||||
int handleCFFILE1;
|
||||
cab_UBYTE szFileNameCFDATA2[CB_MAX_FILENAME];
|
||||
char szFileNameCFDATA2[CB_MAX_FILENAME];
|
||||
int handleCFDATA2;
|
||||
cab_UBYTE szFileNameCFFILE2[CB_MAX_FILENAME];
|
||||
char szFileNameCFFILE2[CB_MAX_FILENAME];
|
||||
int handleCFFILE2;
|
||||
cab_UBYTE szFileNameCFFOLDER[CB_MAX_FILENAME];
|
||||
char szFileNameCFFOLDER[CB_MAX_FILENAME];
|
||||
int handleCFFOLDER;
|
||||
cab_ULONG sizeFileCFDATA1;
|
||||
cab_ULONG sizeFileCFFILE1;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
1 stub GetDllVersion
|
||||
2 stdcall DllGetVersion (ptr) CABINET_DllGetVersion
|
||||
2 stdcall -private DllGetVersion (ptr)
|
||||
3 stdcall Extract(ptr str)
|
||||
4 stub DeleteExtractedFiles
|
||||
10 cdecl FCICreate(ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr ptr)
|
||||
|
|
|
@ -52,7 +52,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cabinet);
|
|||
* NOTES
|
||||
* Supposedly returns version from IE6SP1RP1
|
||||
*/
|
||||
HRESULT WINAPI CABINET_DllGetVersion (DLLVERSIONINFO *pdvi)
|
||||
HRESULT WINAPI DllGetVersion (DLLVERSIONINFO *pdvi)
|
||||
{
|
||||
WARN("hmmm... not right version number \"5.1.1106.1\"?\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue