Jump to content

PROGDETAILS

From EDM2
Revision as of 19:24, 25 April 2025 by Martini (talk | contribs) (Created page with "Program-details structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PROGDETAILS { ULONG Length; Length of structure.: PROGTYPE progt; Program type.: PSZ pszTitle; Title.: PSZ pszExecutable; Executable file name (program name).: PSZ pszParameters; Parameter string.: PSZ pszStartupDir; /* Start-up direct...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Program-details structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PROGDETAILS {
  ULONG        Length;          /* Length of structure. */
  PROGTYPE     progt;           /* Program type. */
  PSZ          pszTitle;        /* Title. */
  PSZ          pszExecutable;   /* Executable file name (program name). */
  PSZ          pszParameters;   /* Parameter string. */
  PSZ          pszStartupDir;   /* Start-up directory. */
  PSZ          pszIcon;         /* Icon-file name. */
  PSZ          pszEnvironment;  /* Environment string. */
  SWP          swpInitial;      /* Initial window position and size. */
} PROGDETAILS;

typedef   PROGDETAILS   * PPROGDETAILS ;