mach-detours/tests/lib_function.h

16 lines
192 B
C
Raw Normal View History

2025-10-01 23:55:17 +02:00
// Copyright (c) Lysann Tranvouez. All rights reserved.
2025-10-01 23:46:55 +02:00
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
2025-10-02 20:51:25 +02:00
extern int libFunctionCounter;
2025-10-01 23:46:55 +02:00
2025-10-02 20:51:25 +02:00
int libFunction();
2025-10-01 23:46:55 +02:00
#ifdef __cplusplus
}
#endif