Foundation > Using Rogue Wave Views on X Window Systems > Integrating Rogue Wave Views with a Motif Application using libmviews > Motif Application Initialization Procedure
 
Motif Application Initialization Procedure
Widget top = XtInitialize("", "Program", NULL, NULL, (Cardinal*)&argc, argv);
if (!top) {
IlvFatalError("Couldn’t open display");
exit(1);
}
IlvDisplay* display = new IlvDisplay(XtDisplay(top), "X");
Here, standard Xt function calls initialize the connection. You have to specify the application name in the constructor of IlvDisplay to be able to find display resources from this string.

Version 5.8
Copyright © 2014, Rogue Wave Software, Inc. All Rights Reserved.