link.h 158 B

123456789101112131415
  1. #pragma once
  2. #ifdef _MSC_VER
  3. #ifdef _cplusplus
  4. extern "C" {
  5. #endif
  6. int link(const char *oldpath, const char *newpath);
  7. #ifdef _cplusplus
  8. }
  9. #endif
  10. #endif