PROJECT NAME DDataObj OLE Server. CREATED BY George Cross, Borland C++ Developer Support, 1996 DESCRIPTION DDataObj is from Chapter 10 of Inside OLE by Kraig Brockschmidt. Of course the original project was built using MS VC++. I converted the project to Borland C++ 5.0. COMMENTS When converting this project from MS VC++, I came across the following imperative changes: 1. LibMain32 had to be changed to DllEntryPoint. 2. __declspec(dllexport) had to be qualified in DllEntryPoint DllCanUnloadNow DllGetClassObject AdvisorWndProc 3. Any global data declared in a header file must be moved to a source file. An 'extern' declaration of the data may remain in the header file. 4. inole.h had to have the line #include removed since Borland C++ doesn't have one.