fixed objective-c to cpp linkage specifiers
parent
732b3068b2
commit
586d041efe
|
@ -468,8 +468,7 @@ exec_project_fkey_command(Application_Links *app, int32_t command_ind){
|
||||||
Buffer_Identifier buffer_id = {0};
|
Buffer_Identifier buffer_id = {0};
|
||||||
uint32_t flags = 0;
|
uint32_t flags = 0;
|
||||||
|
|
||||||
bool32 set_fancy_font = 0;
|
bool32 set_fancy_font = false;
|
||||||
|
|
||||||
if (out[0] != 0){
|
if (out[0] != 0){
|
||||||
int32_t out_len = str_size(out);
|
int32_t out_len = str_size(out);
|
||||||
buffer_id = buffer_identifier(out, out_len);
|
buffer_id = buffer_identifier(out, out_len);
|
||||||
|
@ -479,7 +478,7 @@ exec_project_fkey_command(Application_Links *app, int32_t command_ind){
|
||||||
if (use_build_panel){
|
if (use_build_panel){
|
||||||
view_ = get_or_open_build_panel(app);
|
view_ = get_or_open_build_panel(app);
|
||||||
if (match(out, "*compilation*")){
|
if (match(out, "*compilation*")){
|
||||||
set_fancy_font = 1;
|
set_fancy_font = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|
|
@ -41,25 +41,25 @@ typedef struct OSX_Vars{
|
||||||
// In C++ layer.
|
// In C++ layer.
|
||||||
extern OSX_Vars osx;
|
extern OSX_Vars osx;
|
||||||
|
|
||||||
internal void*
|
void*
|
||||||
osx_allocate(umem size);
|
osx_allocate(umem size);
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_resize(int width, int height);
|
osx_resize(int width, int height);
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_character_input(u32 code, OSX_Keyboard_Modifiers modifier_flags);
|
osx_character_input(u32 code, OSX_Keyboard_Modifiers modifier_flags);
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_mouse(i32 mx, i32 my, u32 type);
|
osx_mouse(i32 mx, i32 my, u32 type);
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_mouse_wheel(float dx, float dy);
|
osx_mouse_wheel(float dx, float dy);
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_step();
|
osx_step();
|
||||||
|
|
||||||
internal void
|
void
|
||||||
osx_init();
|
osx_init();
|
||||||
|
|
||||||
// In Objective-C layer.
|
// In Objective-C layer.
|
||||||
|
|
Loading…
Reference in New Issue