home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
zfamily.zip
/
zfamily
/
ZNLFUNCS
/
SAMPLE
/
TSTABOUT.INC
< prev
next >
Wrap
Text File
|
1993-11-18
|
2KB
|
51 lines
/*
** /----------------------------------------------------------------------\
** | IBM Z Family Reusable Libraries/2 (5641-504) |
** |----------------------------------------------------------------------|
** | (C) Copyright International Business Machines Corporation 1993, 1994 |
** |----------------------------------------------------------------------|
** | DISCLAIMER OF WARRANTIES |
** | ------------------------ |
** | The following code is sample code created by IBM Corporation. |
** | Such a code is provided to you solely for the purpose of assisting |
** | you in the development of your applications. The code is provided |
** | "AS IS", without warranty of any kind. IBM shall not be liable for |
** | any damages arising out of your use of the following code, even if |
** | they have been advised of the possibility of such damages. | *
** \----------------------------------------------------------------------/
**
** Include : TSTABOUT.INC
** Author : Dario de Judicibus (DEJUDICI at ROMEPPC)
** Created : 26 Oct 1992
** Updated : 18 Nov 1993
** Version : 3.30
** Content : Called by WndProc in About case statement.
**
*/
{
zLIBVERS lv ;
zzzLOGODATA ld ;
APIRET rc ;
/*
** Fill the Library Version structure
*/
znlLibraryVersion(&lv) ;
/*
** Fill the Logo Data structure
*/
ld.cb = sizeof(zzzLOGODATA) ;
strcpy (ld.Version, lv.String) ;
strcpy (ld.Library, lv.Name) ;
strcpy (ld.Copyright, zCOPYRIGHT) ;
WinLoadString(hAB, 0, tstSTR_DLLAUTHOR, zzzMAXSTRLEN, ld.Author) ;
/*
** Call the Logo Dialog
*/
rc = WinDlgBox( HWND_DESKTOP, hWnd, (PFNWP)zzzLogoDlgProc,
0, ZZZLOGODLG, (PVOID)&ld) ;
}