mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
19ad3d7a30
svn path=/trunk/; revision=2636
20 lines
466 B
C
20 lines
466 B
C
/* $Id: main.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS POSIX+ Subsystem
|
|
* FILE: subsys/psx/lib/psxdll/misc/main.c
|
|
* PURPOSE: psxdll.dll entry point
|
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
|
* UPDATE HISTORY:
|
|
* 27/12/2001: Created
|
|
*/
|
|
|
|
int __stdcall DllMain(void *hinstDll, unsigned long int dwReason, void *reserved)
|
|
{
|
|
return (1);
|
|
}
|
|
|
|
/* EOF */
|
|
|