Changeset 3413 for trunk/src


Ignore:
Timestamp:
Apr 17, 2000, 4:26:29 AM (25 years ago)
Author:
bird
Message:

Some drafts.

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 $
    22 *
    33 * PTDA access functions.
     
    1212
    1313
     14/*******************************************************************************
     15*   Structures and Typedefs                                                    *
     16*******************************************************************************/
     17typedef struct _PTDA
     18{
     19    char dummy;
     20} PTDA, *PPTDA;
    1421
     22PPTDA   ptdaGetCur(void);
     23PPTDA   ptdaGet_pPTDAExecChild(PPTDA pPTDA);
     24USHORT  ptdaGet_ptda_environ(PPTDA pPTDA);
    1525
    1626#endif
  • trunk/src/win32k/misc/ptda.c

    r3411 r3413  
    1 /* $Id: ptda.c,v 1.1 2000-04-17 01:56:50 bird Exp $
     1/* $Id: ptda.c,v 1.2 2000-04-17 02:26:29 bird Exp $
    22 *
    33 * PTDA access functions.
     
    1717
    1818
     19PPTDA   ptdaGetCur(void)
     20{
     21    return NULL;
     22}
    1923
     24
     25PPTDA   ptdaGet_pPTDAExecChild(PPTDA pPTDA)
     26{
     27    pPTDA = pPTDA;
     28    return NULL;
     29}
     30
     31
     32USHORT  ptdaGet_ptda_environ(PPTDA pPTDA)
     33{
     34    pPTDA = pPTDA;
     35    return 0;
     36}
     37
Note: See TracChangeset for help on using the changeset viewer.