#include <stdio.h>

typedef char * (PCHAR);

#define desc struct                  
#define const enum class              

#define Run int main
#define Say printf

namespace APP
{
  desc STR
  {
    const NLS
    {
      FILE_NAME = "Strings.nls"
    };

    desc USB_DOCK_WINDOW
    {
      const TITLE_BAR
      {
        TEXT = "USB Dock"
      };

      const MENU_BAR
      {
        // ...
      };
    };
  };
}

Run ()
{
  PCHAR File_name = APP::STR::NLS::FILE_NAME;                                                 

  Say ("Hello, World!" "\n");

  return 0;
}
