Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.1 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. pnp_c_stub.c
  5. Abstract:
  6. Stub file to allow pnp_c.c to work with precompiled headers.
  7. Author:
  8. Jim Cavalaris (jamesca) 04-06-2001
  9. Environment:
  10. User-mode only.
  11. Revision History:
  12. 06-April-2001 jamesca
  13. Creation and initial implementation.
  14. Notes:
  15. The included file pnp_c.c contains the client side stubs for the PNP RPC
  16. interface. The stubs are platform specific, and are included from
  17. ..\idl\$(O). You must first build ..\idl for the current platform prior to
  18. building cfgmgr32.
  19. --*/
  20. //
  21. // includes
  22. //
  23. #include "precomp.h"
  24. #pragma hdrstop
  25. //
  26. // Disable some level-4 warnings for the MIDL-generated RPC client stubs.
  27. //
  28. #pragma warning(disable:4100) // warning C4100: unreferenced formal parameter
  29. #pragma warning(disable:4211) // warning C4211: nonstandard extension used: redefined extern to static
  30. #pragma warning(disable:4310) // warning C4310: cast truncates constant value
  31. //
  32. // Include the RPC client-side stubs
  33. //
  34. #include "pnp_c.c"