Changeset 1220 for trunk/dll/arccnrs.h


Ignore:
Timestamp:
Sep 14, 2008, 1:09:45 AM (17 years ago)
Author:
John Small
Message:

Ticket 187: Moved typedef's and some #define's from fm3dll.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.h

    r1203 r1220  
    2727#include "avl.h"                        // ARC_TYPE
    2828
     29#pragma pack(1)
     30
     31typedef struct _ARCITEM
     32{                               // ARCHIVE CONTAINER RECORD STRUCTURE
     33  MINIRECORDCORE rc;            // Base information
     34  HWND hwndCnr;                 /* Container holding this record */
     35  PSZ pszFileName;              // Points to full path name or NullStr
     36  PSZ pszDisplayName;           // Points to displayable part of path name  - used by CFA_STRING
     37  CHAR szDate[40];              // File's assembled date
     38  PSZ pszDate;                  // Pointer to date
     39  CDATE date;                   // if we know date format
     40  CTIME time;                   // if we know time format
     41  ULONGLONG cbFile;             // File's original size
     42  ULONGLONG cbComp;             // File's compressed size
     43  ULONG flags;
     44}
     45ARCITEM, *PARCITEM;
     46
     47#pragma pack()
     48
    2949MRESULT EXPENTRY ArcClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
    3050                                  MPARAM mp2);
Note: See TracChangeset for help on using the changeset viewer.