common: add a row/column co-ordinate structure

This commit is contained in:
2025-05-08 22:24:12 +01:00
parent ce8a12d4f7
commit 592acc693f

View File

@@ -1,6 +1,10 @@
#ifndef IVY_COMMON_MISC_H_
#define IVY_COMMON_MISC_H_
struct ivy_char_cell {
unsigned long c_row, c_col;
};
#if defined(_MSC_VER) && IVY_STATIC == 0
#ifdef IVY_EXPORT
#define IVY_API extern __declspec(dllexport)