Jump to content

PRFHOOKPARMS

From EDM2
Revision as of 23:54, 14 April 2025 by Martini (talk | contribs) (Created page with "This strucutre is used for the HK_PLIST_ENTRY hook (see ProgramListEntryHook), and the HK_PLIST_EXIT hook (see ProgramListExitHook). == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PRFHOOKPARMS { COUNT4B numbytes; ULONG api; STORAGE apiparms; } PRFHOOKPARMS; typedef PRFHOOKPARMS * PRFHOOKPARMS ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This strucutre is used for the HK_PLIST_ENTRY hook (see ProgramListEntryHook), and the HK_PLIST_EXIT hook (see ProgramListExitHook).

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PRFHOOKPARMS {
  COUNT4B     numbytes;
  ULONG       api;
  STORAGE     apiparms;
} PRFHOOKPARMS;

typedef   PRFHOOKPARMS   * PRFHOOKPARMS ;