2018-09-15 23:48:02 +00:00
|
|
|
/*
|
|
|
|
4coder_jump_lister.h - Lister for jump buffers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2019-02-26 23:17:53 +00:00
|
|
|
typedef i32 Jump_Lister_Activation_Rule;
|
2018-09-15 23:48:02 +00:00
|
|
|
enum{
|
|
|
|
JumpListerActivation_OpenInUIView = 0,
|
|
|
|
JumpListerActivation_OpenInTargetViewKeepUI = 1,
|
|
|
|
JumpListerActivation_OpenInTargetViewCloseUI = 2,
|
|
|
|
JumpListerActivation_OpenInNextViewKeepUI = 3,
|
|
|
|
JumpListerActivation_OpenInNextViewCloseUI = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Jump_Lister_Parameters{
|
|
|
|
Buffer_ID list_buffer_id;
|
|
|
|
Jump_Lister_Activation_Rule activation_rule;
|
|
|
|
View_ID target_view_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
// BOTTOM
|