mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
19 lines
331 B
C
19 lines
331 B
C
#ifdef BZ_DECOMPRESS_ONLY
|
|
int _stdcall DriverEntry( void *a, void *b );
|
|
|
|
int _stdcall DriverEntry( void *a, void *b )
|
|
{
|
|
return 1;
|
|
}
|
|
#else
|
|
int _stdcall DllMain( unsigned long a, unsigned long b, unsigned long c )
|
|
{
|
|
return 1;
|
|
}
|
|
#endif
|
|
void bz_internal_error ( int errcode );
|
|
|
|
void bz_internal_error ( int errcode )
|
|
{
|
|
return;
|
|
}
|