mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
- Copy the "pshpack*.h", "poppack.h" and "typedefs_host.h" (renamed to "typedefs.h") files to this directory - Modify the Makefiles of cmlib_host, inflib_host, mkhive, unicode, wmc and wrc to remove the "include/psdk" dependency - Remove the inclusion of "ntstatus.h" in cmlib_host and mkhive svn path=/trunk/; revision=29042
11 lines
210 B
C
11 lines
210 B
C
#ifndef RC_INVOKED
|
|
#if ( _MSC_VER >= 800 )
|
|
#pragma warning(disable:4103)
|
|
#endif // _MSC_VER
|
|
# if ( __FreeBSD__ == 5 )
|
|
# pragma pack(4)
|
|
# else
|
|
# pragma pack(push,4)
|
|
# endif // __FreeBSD__
|
|
#endif // RC_INVOKED
|