LFile::GetFileName
#include "ltwrappr.h"
L_TCHAR L_FAR * LFile::GetFileName(L_VOID)
L_INT LFile::GetFileName(pBuffer, puBuffSize)
| /* character string to be updated */ | |
| /* size of pBuffer */ | 
LFile::GetFileName() gets a pointer to the internal file name.
LFile::GetFileName(pBuffer, puBuffSize) gets a copy of the internal file name.
| Parameter | Description | 
| pBuffer | Character string that will be updated with the internal file name. | 
| uBuffSize | Pointer to a variable to be updated with the size of pBuffer. | 
Returns
LFile::GetFileName returns a pointer to the internal file name. You should not attempt to free this pointer.
LFile::GetFileName(pBuffer, uBuffSize) returns the following:
| SUCCESS | The function was successful. | 
| < 1 | An error occurred. Refer to Return Codes. | 
Required DLLs and Libraries
| LTFIL For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. | 
See Also
| Functions: | 
Example
L_VOID TestFunction (HWND hWnd)
{
   LFile              LeadFile ;
   LBitmapBase LeadBitmap ;
   L_INT             nRet = 0;
   L_TCHAR        *szOldFileName;
   L_TCHAR        *szNewFileName;
   
   LeadFile.SetBitmap(&LeadBitmap) ;
   LeadFile.SetFileName(TEXT("image1.cmp")) ;
   MessageBox(0,LeadFile.GetFileName() ,TEXT("file to load"),MB_OK);
   LeadFile.LoadFile (24, ORDER_RGB, LOADFILE_ALLOCATE | LOADFILE_STORE) ;
   LeadFile.SetFileName (TEXT("TESTSTMP.CMP"));
   // Save a CMP file
   nRet = LeadFile.SaveBitmap(FILE_CMP);
   if (nRet == SUCCESS)
   {
      L_TCHAR   szBuffer[256] ;
      L_UINT   puFileNameLen ;
      MessageBox (hWnd, TEXT("Function complete - Look at TESTSTMP.CMP"), TEXT("Notice"), MB_OK);
      LeadFile.GetFileName(szNewFileName,&puFileNameLen) ;
      wsprintf(szBuffer,TEXT("Old File Name = %s\nBitmap compressed with stamp to\nNew File Name = %s\n"),
 szOldFileName,szNewFileName) ;
      MessageBox(hWnd,szBuffer,TEXT("Information"),MB_OK);
   }
      
   LeadBitmap.Free() ;
}