I came across following code in Pebble watch app development tutorial:
// Set handlers to manage the elements inside the Window
  window_set_window_handlers(s_main_window, (WindowHandlers) {
    .load = main_window_load,
    .unload = main_window_unload
  });
I cant understand this assignment to .load and .unload. Is this standard C? I don't think I have ever seen similar syntax before.
 
     
     
    