Changeset 6815 for trunk/src/win32k/kKrnlLib/include/OS2KPTDA.h
- Timestamp:
- Sep 26, 2001, 5:52:37 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/OS2KPTDA.h
r6701 r6815 1 /* $Id: OS2KPTDA.h,v 1. 1 2001-09-14 01:50:15bird Exp $1 /* $Id: OS2KPTDA.h,v 1.2 2001-09-26 03:52:36 bird Exp $ 2 2 * 3 3 * PTDA access functions. 4 4 * 5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no)5 * Copyright (c) 2000-2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no) 6 6 * 7 7 * Project Odin Software License can be found in LICENSE.TXT … … 27 27 28 28 29 #ifdef KKRNLLIB 29 30 extern PPPTDA ppPTDACur; /* Please access this only thru the ptdaGetCur() function. */ 31 #else 32 extern PPTDA pPTDACur; /* Please access this only thru the ptdaGetCur() function. */ 33 #endif 30 34 31 35 … … 39 43 */ 40 44 //PPTDA ptdaGetCur(void); 45 #ifdef KKRNLLIB 41 46 #define ptdaGetCur() (*ppPTDACur) 47 #else 48 #define ptdaGetCur() (pPTDACur) 49 #endif 50 42 51 43 52
Note:
See TracChangeset
for help on using the changeset viewer.