Author: jhorwitz
Date: Sun Jul 20 08:12:54 2008
New Revision: 367
Modified:
mod_parrot/trunk/src/nci.c
Log:
replace remaining internal PMC * types with Parrot_PMC
Modified: mod_parrot/trunk/src/nci.c
==============================================================================
--- mod_parrot/trunk/src/nci.c (original)
+++ mod_parrot/trunk/src/nci.c Sun Jul 20 08:12:54 2008
@@ -129,7 +129,7 @@
* Instead, we return the results in a PMC array passed in from the caller.
*/
int mpnci_request_rec_get_basic_auth_pw(Parrot_Interp interp, request_rec *r,
- PMC *results)
+ Parrot_PMC results)
{
int status;
char *pw = NULL;
@@ -146,7 +146,7 @@
return(status);
}
-int mpnci_rwrite(Parrot_Interp interp, PMC *p, int size, request_rec *r)
+int mpnci_rwrite(Parrot_Interp interp, Parrot_PMC p, int size, request_rec *r)
{
modparrot_context *ctxp;
Parrot_Interp interpreter;