nochkclr.c 581 B

1234567891011121314151617181920212223242526
  1. /***
  2. * nochkclr.c - Dummy non-version-checking CLR call
  3. *
  4. * Copyright (c) Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *
  8. *******************************************************************************/
  9. /***
  10. *_check_commonlanguageruntime_version
  11. *
  12. *Purpose:
  13. * If you don't link to the CRT, you use this obj to fill the compiler's need for this symbol
  14. *******************************************************************************/
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. void __cdecl _check_commonlanguageruntime_version()
  19. {
  20. }
  21. #ifdef __cplusplus
  22. }
  23. #endif