mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
fix a typo
svn path=/trunk/; revision=31975
This commit is contained in:
parent
24f6bca826
commit
5af79446f0
1 changed files with 1 additions and 8 deletions
|
@ -64,9 +64,6 @@ typedef struct _EDD_SURFACE_LOCAL
|
||||||
DD_SURFACE_LOCAL Surfacelcl;
|
DD_SURFACE_LOCAL Surfacelcl;
|
||||||
} EDD_SURFACE_LOCAL, *PEDD_SURFACE_LOCAL;
|
} EDD_SURFACE_LOCAL, *PEDD_SURFACE_LOCAL;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* exported functions */
|
/* exported functions */
|
||||||
NTSTATUS DriverEntry(IN PVOID Context1, IN PVOID Context2);
|
NTSTATUS DriverEntry(IN PVOID Context1, IN PVOID Context2);
|
||||||
NTSTATUS GsDriverEntry(IN PVOID Context1, IN PVOID Context2);
|
NTSTATUS GsDriverEntry(IN PVOID Context1, IN PVOID Context2);
|
||||||
|
@ -85,22 +82,18 @@ extern VOID *gpDummyPage;
|
||||||
extern PEPROCESS gpepSession;
|
extern PEPROCESS gpepSession;
|
||||||
extern PLARGE_INTEGER gpLockShortDelay;
|
extern PLARGE_INTEGER gpLockShortDelay;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Driver list export functions */
|
/* Driver list export functions */
|
||||||
DWORD STDCALL DxDxgGenericThunk(ULONG_PTR ulIndex, ULONG_PTR ulHandle, SIZE_T *pdwSizeOfPtr1, PVOID pvPtr1, SIZE_T *pdwSizeOfPtr2, PVOID pvPtr2);
|
DWORD STDCALL DxDxgGenericThunk(ULONG_PTR ulIndex, ULONG_PTR ulHandle, SIZE_T *pdwSizeOfPtr1, PVOID pvPtr1, SIZE_T *pdwSizeOfPtr2, PVOID pvPtr2);
|
||||||
DWORD STDCALL DxDdIoctl(ULONG ulIoctl, PVOID pBuffer, ULONG ulBufferSize);
|
DWORD STDCALL DxDdIoctl(ULONG ulIoctl, PVOID pBuffer, ULONG ulBufferSize);
|
||||||
PDD_SURFACE_LOCAL STDCALL DxDdLockDirectDrawSurface(HANDLE hDdSurface);
|
PDD_SURFACE_LOCAL STDCALL DxDdLockDirectDrawSurface(HANDLE hDdSurface);
|
||||||
BOOL STDCALL DxDdUnlockDirectDrawSurface(PDD_SURFACE_LOCAL pSurface);
|
BOOL STDCALL DxDdUnlockDirectDrawSurface(PDD_SURFACE_LOCAL pSurface);
|
||||||
|
|
||||||
/* Internel functions */
|
/* Internal functions */
|
||||||
BOOL FASTCALL VerifyObjectOwner(PDD_ENTRY pEntry);
|
BOOL FASTCALL VerifyObjectOwner(PDD_ENTRY pEntry);
|
||||||
BOOL FASTCALL DdHmgCreate();
|
BOOL FASTCALL DdHmgCreate();
|
||||||
BOOL FASTCALL DdHmgDestroy();
|
BOOL FASTCALL DdHmgDestroy();
|
||||||
PVOID FASTCALL DdHmgLock( HANDLE DdHandle, UCHAR ObjectType, BOOLEAN LockOwned);
|
PVOID FASTCALL DdHmgLock( HANDLE DdHandle, UCHAR ObjectType, BOOLEAN LockOwned);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* define stuff */
|
/* define stuff */
|
||||||
#define drvDxEngLockDC gpEngFuncs[DXENG_INDEX_DxEngLockDC]
|
#define drvDxEngLockDC gpEngFuncs[DXENG_INDEX_DxEngLockDC]
|
||||||
#define drvDxEngGetDCState gpEngFuncs[DXENG_INDEX_DxEngGetDCState]
|
#define drvDxEngGetDCState gpEngFuncs[DXENG_INDEX_DxEngGetDCState]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue