Path: utzoo!attcan!uunet!decwrl!bacchus.pa.dec.com!wsl.dec.com!klee From: klee@wsl.dec.com (Ken Lee) Newsgroups: comp.windows.x Subject: Re: decwindows: XResourceManagerString()? Message-ID: <1990Jul9.180354.16310@wrl.dec.com> Date: 9 Jul 90 18:03:54 GMT References: <9007070758.AA03094@shamash.McRCIM.McGill.EDU> Sender: news@wrl.dec.com (News) Reply-To: klee@wsl.dec.com Organization: DEC Western Software Laboratory Lines: 29 In article <9007070758.AA03094@shamash.McRCIM.McGill.EDU>, mouse@SHAMASH.MCRCIM.MCGILL.EDU (der Mouse) writes: |> Problem: when trying to build an X client, XResourceManagerString() |> doesn't exist. It doesn't exist in the include files (grep |> ResourceManager *.h in /usr/include/X11 turned up nothing) and it |> doesn't exist in the -lX11 library (undefined symbol at link time). Sorry, don't know what your problem could be. This program works fine on my DECstation 3100 using the UWS2.2 release (from last year): ======== #include #include main() { Display *dpy = XOpenDisplay(NULL); char *s = XResourceManagerString(dpy); printf("rm string = %s\n", s); XCloseDisplay(dpy); } ======== Ken Lee DEC Western Software Laboratory, Palo Alto, Calif. Internet: klee@wsl.dec.com uucp: uunet!decwrl!klee