4coder/4coder_combined_write_comma...

21 lines
286 B
C
Raw Normal View History

/*
4coder_combined_write_commands.cpp - Commands for writing text specialized for particular contexts.
*/
// TOP
struct Snippet{
char *name;
char *text;
2019-02-26 23:17:53 +00:00
i32 cursor_offset;
i32 mark_offset;
};
struct Snippet_Array{
Snippet *snippets;
2019-02-26 23:17:53 +00:00
i32 count;
};
// BOTTOM