mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
initial code for process attach
svn path=/trunk/; revision=2700
This commit is contained in:
parent
6d05bb6b7a
commit
b62ac8152f
1 changed files with 23 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: main.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $
|
||||
/* $Id: main.c,v 1.3 2002/03/11 20:48:25 hyperion Exp $
|
||||
*/
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
|
@ -10,8 +10,29 @@
|
|||
* 27/12/2001: Created
|
||||
*/
|
||||
|
||||
int __stdcall DllMain(void *hinstDll, unsigned long int dwReason, void *reserved)
|
||||
#include <psx/debug.h>
|
||||
#include <psx/pdata.h>
|
||||
|
||||
#define DLL_PROCESS_ATTACH 1
|
||||
#define DLL_THREAD_ATTACH 2
|
||||
#define DLL_THREAD_DETACH 3
|
||||
#define DLL_PROCESS_DETACH 0
|
||||
|
||||
int __stdcall DllMain(void *pDllInstance, unsigned long int nReason, void *pUnknown)
|
||||
{
|
||||
#if 0
|
||||
if(nReason == DLL_PROCESS_ATTACH)
|
||||
{
|
||||
__PPDX_PDATA ppdProcessData = __PdxGetProcessData();
|
||||
|
||||
if(ppdProcessData == 0)
|
||||
WARN("this process doesn't have a process data block\n");
|
||||
else if(ppdProcessData->Spawned)
|
||||
{
|
||||
INFO("the process has been spawned\n");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue