ACTIONS: Difference between revisions
Appearance
Created page with "Action button data structure. ==Syntax== typedef struct _ACTIONS { PSZ pszTitle; →String containing the title of the action button.: ULONG ulMenuId; →Desktop menu IDs.: HPOINTER hIcon; →The icon handle.: } ACTIONS; typedef ACTIONS * PACTIONS ; == Type == struct == C Declaration Method == typedef Category:Data type" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Action button data structure. | Action button data structure. | ||
== | == Type == | ||
struct | |||
== C Declaration Method == | |||
typedef | |||
==Example Code== | |||
<PRE> | |||
typedef struct _ACTIONS { | typedef struct _ACTIONS { | ||
PSZ pszTitle; /* String containing the title of the action button. */ | PSZ pszTitle; /* String containing the title of the action button. */ | ||
Line 9: | Line 16: | ||
typedef ACTIONS * PACTIONS ; | typedef ACTIONS * PACTIONS ; | ||
</PRE> | |||
[[Category:WPS Data type]] | |||
[[Category:Data type]] |
Latest revision as of 17:26, 2 May 2025
Action button data structure.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _ACTIONS { PSZ pszTitle; /* String containing the title of the action button. */ ULONG ulMenuId; /* Desktop menu IDs. */ HPOINTER hIcon; /* The icon handle. */ } ACTIONS; typedef ACTIONS * PACTIONS ;