mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[Win32k]
- remove some more unneeded functions svn path=/trunk/; revision=53468
This commit is contained in:
parent
24abf1b222
commit
65b8a5d11b
9 changed files with 0 additions and 78 deletions
|
@ -614,15 +614,6 @@ EXLATEOBJ_vCleanup(PEXLATEOBJ pexlo)
|
|||
pexlo->xlo.pulXlate = pexlo->aulXlate;
|
||||
}
|
||||
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitXlateImpl(VOID)
|
||||
{
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/** Public DDI Functions ******************************************************/
|
||||
|
||||
#undef XLATEOBJ_iXlate
|
||||
|
|
|
@ -7,6 +7,4 @@ typedef struct _ACCELERATOR_TABLE
|
|||
LPACCEL Table;
|
||||
} ACCELERATOR_TABLE, *PACCELERATOR_TABLE;
|
||||
|
||||
INIT_FUNCTION NTSTATUS NTAPI InitAcceleratorImpl(VOID);
|
||||
NTSTATUS FASTCALL CleanupAcceleratorImpl(VOID);
|
||||
PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);
|
||||
|
|
|
@ -4,9 +4,4 @@ BOOL FASTCALL co_IntGraphicsCheck(BOOL Create);
|
|||
BOOL FASTCALL IntCreatePrimarySurface(VOID);
|
||||
VOID FASTCALL IntDestroyPrimarySurface(VOID);
|
||||
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitGuiCheckImpl (VOID);
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -31,13 +31,6 @@ typedef struct _MONITOR
|
|||
struct _MONITOR* Prev; //Blink;
|
||||
} MONITOR, *PMONITOR;
|
||||
|
||||
/* functions */
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitMonitorImpl(VOID);
|
||||
NTSTATUS CleanupMonitorImpl(VOID);
|
||||
|
||||
NTSTATUS IntAttachMonitor(PDEVOBJ *pGdiDevice, ULONG DisplayNumber);
|
||||
NTSTATUS IntDetachMonitor(PDEVOBJ *pGdiDevice);
|
||||
NTSTATUS IntUpdateMonitorSize(IN PDEVOBJ *pGdiDevice);
|
||||
|
|
|
@ -45,9 +45,3 @@ VOID NTAPI EXLATEOBJ_vInitialize(PEXLATEOBJ pexlo, PALETTE *ppalSrc, PALETTE *pp
|
|||
VOID NTAPI EXLATEOBJ_vInitXlateFromDCs(PEXLATEOBJ pexlo, PDC pdcSrc, PDC pdcDst);
|
||||
VOID NTAPI EXLATEOBJ_vInitSrcMonoXlate(PEXLATEOBJ pexlo, PPALETTE ppalDst, ULONG Color0, ULONG Color1);
|
||||
VOID NTAPI EXLATEOBJ_vCleanup(PEXLATEOBJ pexlo);
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitXlateImpl(VOID);
|
||||
|
||||
//#define XLATEOBJ_iXlate(pxo, Color) ((EXLATEOBJ*)pxo)->pfnXlate(pxo, Color)
|
||||
|
|
|
@ -172,7 +172,6 @@ Win32kProcessCallback(struct _EPROCESS *Process,
|
|||
|
||||
IntCleanupMenus(Process, Win32Process);
|
||||
IntCleanupCurIcons(Process, Win32Process);
|
||||
CleanupMonitorImpl();
|
||||
|
||||
/* no process windows should exist at this point, or the function will assert! */
|
||||
DestroyProcessClasses(Win32Process);
|
||||
|
@ -574,7 +573,6 @@ DriverEntry(
|
|||
CreateStockObjects();
|
||||
CreateSysColorObjects();
|
||||
|
||||
NT_ROF(InitXlateImpl());
|
||||
NT_ROF(InitPDEVImpl());
|
||||
NT_ROF(InitLDEVImpl());
|
||||
NT_ROF(InitDeviceImpl());
|
||||
|
@ -585,11 +583,8 @@ DriverEntry(
|
|||
NT_ROF(InitDesktopImpl());
|
||||
NT_ROF(InitInputImpl());
|
||||
NT_ROF(InitKeyboardImpl());
|
||||
NT_ROF(InitMonitorImpl());
|
||||
NT_ROF(MsqInitializeImpl());
|
||||
NT_ROF(InitTimerImpl());
|
||||
NT_ROF(InitAcceleratorImpl());
|
||||
NT_ROF(InitGuiCheckImpl());
|
||||
|
||||
/* Initialize FreeType library */
|
||||
if (!InitFontSupport())
|
||||
|
|
|
@ -40,21 +40,6 @@ UINT FASTCALL IntGetMenuState( HMENU hMenu, UINT uId, UINT uFlags);
|
|||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitAcceleratorImpl(VOID)
|
||||
{
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
NTSTATUS FASTCALL
|
||||
CleanupAcceleratorImpl(VOID)
|
||||
{
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
|
||||
PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL hAccel)
|
||||
{
|
||||
PACCELERATOR_TABLE Accel;
|
||||
|
|
|
@ -122,12 +122,4 @@ IntUserManualGuiCheck(LONG Check)
|
|||
}
|
||||
}
|
||||
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitGuiCheckImpl (VOID)
|
||||
{
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -28,27 +28,6 @@ DBG_DEFAULT_CHANNEL(UserMonitor);
|
|||
/* list of monitors */
|
||||
static PMONITOR gMonitorList = NULL;
|
||||
|
||||
/* INITALIZATION FUNCTIONS ****************************************************/
|
||||
|
||||
INIT_FUNCTION
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
InitMonitorImpl()
|
||||
{
|
||||
TRACE("Initializing monitor implementation...\n");
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
CleanupMonitorImpl()
|
||||
{
|
||||
TRACE("Cleaning up monitor implementation...\n");
|
||||
/* FIXME: Destroy monitor objects? */
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* PRIVATE FUNCTIONS **********************************************************/
|
||||
|
||||
/* IntCreateMonitorObject
|
||||
|
|
Loading…
Reference in a new issue