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
8776e5de
Commit
8776e5de
authored
Feb 05, 2008
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Feb 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
url: Add a stub for AddMIMEFileTypesPS.
parent
210363e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
url.spec
dlls/url/url.spec
+1
-1
url_main.c
dlls/url/url_main.c
+22
-0
No files found.
dlls/url/url.spec
View file @
8776e5de
@ st
ub AddMIMEFileTypesPS
@ st
dcall AddMIMEFileTypesPS(ptr ptr)
@ stub AutodialHookCallback
@ stub AutodialHookCallback
@ stub DllCanUnloadNow
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stub DllGetClassObject
...
...
dlls/url/url_main.c
View file @
8776e5de
...
@@ -24,6 +24,9 @@
...
@@ -24,6 +24,9 @@
#include "shellapi.h"
#include "shellapi.h"
#include "shlwapi.h"
#include "shlwapi.h"
#include "intshcut.h"
#include "intshcut.h"
#include "winuser.h"
#include "commctrl.h"
#include "prsht.h"
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
url
);
WINE_DEFAULT_DEBUG_CHANNEL
(
url
);
...
@@ -45,6 +48,25 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
...
@@ -45,6 +48,25 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
}
}
/***********************************************************************
/***********************************************************************
* AddMIMEFileTypesPS (URL.@)
*
* Build and Manage a Filetype-Association Property Sheet
*
* PARAMS
* unknown1 [I] Pointer to an Read-Only Area
* lppsh [I] PTR to the target PropertySheetHeader (ANSI)
*
* RETURNS
* Success: 0
*
*/
DWORD
WINAPI
AddMIMEFileTypesPS
(
VOID
*
unknown1
,
LPPROPSHEETHEADERA
lppsh
)
{
FIXME
(
"(%p, %p): stub!
\n
"
,
unknown1
,
lppsh
);
return
0
;
}
/***********************************************************************
* InetIsOffline (URL.@)
* InetIsOffline (URL.@)
*
*
*/
*/
...
...
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