Jump to content

RENDERFILE

From EDM2
Revision as of 02:41, 21 April 2025 by Martini (talk | contribs) (Created page with "File-rendering structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _RENDERFILE { HWND hwndDragFiles; Conversation handle.: HSTR hstrSource; Handle to source file name.: HSTR hstrTarget; Handle to target file name.: USHORT fMove; Operation.: USHORT usRsvd; Reserved.: } RENDERFILE; typedef RENDERFILE * PRENDERFILE ; </pre>...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

File-rendering structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _RENDERFILE {
  HWND       hwndDragFiles;  /*  Conversation handle. */
  HSTR       hstrSource;     /*  Handle to source file name. */
  HSTR       hstrTarget;     /*  Handle to target file name. */
  USHORT     fMove;          /*  Operation. */
  USHORT     usRsvd;         /*  Reserved. */
} RENDERFILE;

typedef   RENDERFILE   * PRENDERFILE ;