Jump to content

ACTIONS: Difference between revisions

From EDM2
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
Line 1: Line 1:
Action button data structure.
Action button data structure.


==Syntax==
== 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>
== Type ==
struct
 
== C Declaration Method ==
typedef


[[Category:Data type]]
[[Category:Data type]]

Revision as of 16:52, 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 ;