diff options
Diffstat (limited to 'src/nvim/api/defs.h')
-rw-r--r-- | src/nvim/api/defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/api/defs.h b/src/nvim/api/defs.h index d451667a6c..914ff3c5d5 100644 --- a/src/nvim/api/defs.h +++ b/src/nvim/api/defs.h @@ -15,9 +15,9 @@ typedef struct { size_t size; } String; -typedef uint16_t Buffer; -typedef uint16_t Window; -typedef uint16_t Tabpage; +typedef int64_t Buffer; +typedef int64_t Window; +typedef int64_t Tabpage; typedef struct object Object; @@ -27,7 +27,7 @@ typedef struct { } StringArray; typedef struct { - uint16_t row, col; + int64_t row, col; } Position; typedef struct { |