4coder/4coder_jumping.h

25 lines
300 B
C
Raw Normal View History

2017-04-15 21:47:23 +00:00
/*
4coder_jumping.h - Types used in jumping.
2017-04-15 21:47:23 +00:00
*/
// TOP
#if !defined(FCODER_JUMPING_H)
#define FCODER_JUMPING_H
struct ID_Pos_Jump_Location{
Buffer_ID buffer_id;
int32_t pos;
};
struct Name_Based_Jump_Location{
String file;
int32_t line;
int32_t column;
};
2017-04-15 21:47:23 +00:00
#endif
// BOTTOM