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
2eac48f5
Commit
2eac48f5
authored
Oct 27, 2007
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
acledit: Add a stub for FMExtensionProcW.
parent
64359c24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
acledit.spec
dlls/acledit/acledit.spec
+1
-1
main.c
dlls/acledit/main.c
+12
-0
No files found.
dlls/acledit/acledit.spec
View file @
2eac48f5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
2 stub EditOwnerInfo
2 stub EditOwnerInfo
3 stub EditPermissionInfo
3 stub EditPermissionInfo
4 stdcall DllMain(long long ptr)
4 stdcall DllMain(long long ptr)
5 st
ub FMExtensionProcW
5 st
dcall FMExtensionProcW(long long long)
6 stub SedDiscretionaryAclEditor
6 stub SedDiscretionaryAclEditor
7 stub SedSystemAclEditor
7 stub SedSystemAclEditor
8 stub SedTakeOwnership
8 stub SedTakeOwnership
dlls/acledit/main.c
View file @
2eac48f5
...
@@ -46,3 +46,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
...
@@ -46,3 +46,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
}
return
TRUE
;
return
TRUE
;
}
}
/***********************************************************************
* FMExtensionProcW (acledit.@)
*
*/
LONG
WINAPI
FMExtensionProcW
(
HWND
hWnd
,
WORD
wEvent
,
LONG
lParam
)
{
FIXME
(
"%p, %d, 0x%x) stub
\n
"
,
hWnd
,
wEvent
,
lParam
);
return
0
;
}
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