mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
devcpux:
- Fix ProcessorDlgProc definition - Convert to spec. slayer: - Convert to spec. svn path=/branches/ros-amd64-bringup/; revision=38265
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
LIBRARY devcpux.dll
|
||||
|
||||
EXPORTS
|
||||
|
||||
PropSheetExtProc@12
|
||||
|
||||
; EOF
|
||||
@@ -1,5 +1,5 @@
|
||||
<module name="devcpux" type="win32dll" installbase="system32" installname="devcpux.dll" unicode="yes">
|
||||
<importlibrary definition="devcpux.def" />
|
||||
<importlibrary definition="devcpux.spec" />
|
||||
<include base="devcpux">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<library>kernel32</library>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
@ stdcall PropSheetExtProc(ptr ptr ptr)
|
||||
@@ -14,7 +14,7 @@
|
||||
#include "resource.h"
|
||||
|
||||
HINSTANCE g_hInstance = NULL;
|
||||
int APIENTRY ProcessorDlgProc (HWND hDlg, UINT uMessage, WPARAM wParam, LPARAM lParam);
|
||||
LRESULT CALLBACK ProcessorDlgProc (HWND hDlg, UINT uMessage, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
BOOL
|
||||
APIENTRY
|
||||
@@ -74,8 +74,8 @@ AddFeature(WCHAR* szFeatures, WCHAR* Feature, BOOL* bFirst)
|
||||
wcscat(szFeatures, Feature);
|
||||
}
|
||||
|
||||
int
|
||||
APIENTRY
|
||||
LRESULT
|
||||
CALLBACK
|
||||
ProcessorDlgProc (HWND hDlg, UINT uMessage, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
switch (uMessage) {
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
LIBRARY slayer.dll
|
||||
|
||||
EXPORTS
|
||||
DllCanUnloadNow@0
|
||||
DllGetClassObject@12
|
||||
DllRegisterServer@0
|
||||
DllUnregisterServer@0
|
||||
|
||||
; EOF
|
||||
@@ -1,5 +1,5 @@
|
||||
<module name="slayer" type="win32dll" baseaddress="${BASEADDRESS_SLAYER}" installbase="system32" installname="slayer.dll" unicode="yes">
|
||||
<importlibrary definition="slayer.def" />
|
||||
<importlibrary definition="slayer.spec" />
|
||||
<include base="slayer">.</include>
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
@ stdcall DllCanUnloadNow()
|
||||
@ stdcall DllGetClassObject(long long ptr)
|
||||
@ stdcall DllRegisterServer()
|
||||
@ stdcall DllUnregisterServer()
|
||||
Reference in New Issue
Block a user