mirror of
https://github.com/macports/pallet.git
synced 2026-07-12 18:18:47 -07:00
git-svn-id: https://svn.macports.org/repository/macports/branches/gsoc08-framework@38934 d073be05-634f-4543-b044-5fe20cf6d1d6
37 lines
749 B
C
37 lines
749 B
C
/*
|
|
* MPHelperCommon.c
|
|
* MacPorts.Framework
|
|
*
|
|
* Created by George Armah on 7/31/08.
|
|
* Copyright 2008 Lafayette College. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include "MPHelperCommon.h"
|
|
|
|
|
|
/*
|
|
IMPORTANT
|
|
---------
|
|
This array must be exactly parallel to the kMPHelperCommandProcs array
|
|
in "MPHelperTool.m".
|
|
*/
|
|
|
|
const BASCommandSpec kMPHelperCommandSet[] = {
|
|
|
|
{ kMPHelperEvaluateTclCommand, //commandName
|
|
kMPHelperEvaluateTclRightsName, //rightName
|
|
"default", //rightDefaultRule -- by default, you have to have admin credentials
|
|
NULL, //rightDescriptionKey
|
|
NULL // userData ... I might use this to pass the NSError object later on
|
|
},
|
|
|
|
{ NULL, //the array is null terminated
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL
|
|
}
|
|
|
|
};
|