- Timestamp:
- Apr 17, 2000, 4:26:29 AM (25 years ago)
- Location:
- trunk/src/win32k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/ptda.h
r3411 r3413 1 /* $Id: ptda.h,v 1. 1 2000-04-17 01:56:49 bird Exp $1 /* $Id: ptda.h,v 1.2 2000-04-17 02:26:29 bird Exp $ 2 2 * 3 3 * PTDA access functions. … … 12 12 13 13 14 /******************************************************************************* 15 * Structures and Typedefs * 16 *******************************************************************************/ 17 typedef struct _PTDA 18 { 19 char dummy; 20 } PTDA, *PPTDA; 14 21 22 PPTDA ptdaGetCur(void); 23 PPTDA ptdaGet_pPTDAExecChild(PPTDA pPTDA); 24 USHORT ptdaGet_ptda_environ(PPTDA pPTDA); 15 25 16 26 #endif -
trunk/src/win32k/misc/ptda.c
r3411 r3413 1 /* $Id: ptda.c,v 1. 1 2000-04-17 01:56:50bird Exp $1 /* $Id: ptda.c,v 1.2 2000-04-17 02:26:29 bird Exp $ 2 2 * 3 3 * PTDA access functions. … … 17 17 18 18 19 PPTDA ptdaGetCur(void) 20 { 21 return NULL; 22 } 19 23 24 25 PPTDA ptdaGet_pPTDAExecChild(PPTDA pPTDA) 26 { 27 pPTDA = pPTDA; 28 return NULL; 29 } 30 31 32 USHORT ptdaGet_ptda_environ(PPTDA pPTDA) 33 { 34 pPTDA = pPTDA; 35 return 0; 36 } 37
Note:
See TracChangeset
for help on using the changeset viewer.