2019-04-02 20:06:49 +00:00
|
|
|
/*
|
|
|
|
* Serial inserts helpers
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_INSERTION_H)
|
|
|
|
#define FRED_INSERTION_H
|
|
|
|
|
|
|
|
struct Buffer_Insertion{
|
|
|
|
Application_Links *app;
|
|
|
|
Buffer_ID buffer;
|
2019-06-20 23:43:27 +00:00
|
|
|
i64 at;
|
2019-04-02 20:06:49 +00:00
|
|
|
b32 buffering;
|
2019-06-01 23:58:28 +00:00
|
|
|
Cursor *cursor;
|
2019-04-02 20:06:49 +00:00
|
|
|
Temp_Memory temp;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|