Unit GroupTyp |
Classes |
Functions |
ExtractCmdLine -
** ExtractCmdLine
** What does it do?: This function takes the input from the pszCmdLine
** argument and retrieves the Executable File Name & Path
** and Returns it to the Calling Routine.
ParseGroupItems -
** There are two main functions, ParseGroupItems and ExtractCmdLine.
Types |
Constants |
Variables |
Functions |
** ParseGroupItems: ** What does it do?: This function takes the input from the pszGroupInfo ** argument and parses it out into the GroupInfo ** Structure. ** ** Arguments: ** Name: pszGroupInfo ** Type: String ** Why: This is one of the strings that was ** passed back from the dde call that ** contains the Item Information. ** ** Name: GroupInfo ** Type: TGroupInfo_t; ** Why: The Information from pszGroupInfo ** is parsed into this structure and ** passed back to the calling routine. ** ** Returns: TRUE: The Function Sucessfully Parse the Input. ** FALSE: The input could not be sucessfully parsed.
Types |
TGroupInfo_t = record** This is what I could figure out the Strucutre of the information ** passed back from the Program Manager Looks Like.
ItemName : String;
CmdLine : String;
WorkingDir : String;
IconFile : String;
GroupPosition : longint;
IconIndex : longint;
Shortcutkey : longint;
MinimizeFlag : longint;
end;
Constants |
Variables |