#include <stdio.h>

typedef char * (PCHAR);

#define const struct /*cs-data-types*/
#define set enum class /*cs-values*/

#define Run int main
#define Say printf

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

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

      set MENU_BAR
      {
        // ...
      };
    };
  };
}

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

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

  return 0;
}
