Ard as ISP with XBEE, WiFi shld, two Uno R3's, two Ethernet Shields and SD minis

//my code (attached) only has two errors:
CodeLine:21: error: expected initializer before 'pinMode'
CodeLine:21: error: expected declaration before '}' token

//line twenty one is:
int status WiFi; }

//my guess is i need to add:
void WiFi();
// and put this in before line 21...is that a good next step?
//what initializer do I need for pinMode?//
//this is before void setup:

#include<Keypad.h>
#include <SD.h>
#include <Ethernet.h>
#include <LiquidCrystal.h>
#include <SPI.h>
#include "SPI.h"
#include "pins_arduino.h"
#define Ethernet pinMode (10)
#define WiFi pinMode (12)
#define SD pinMode (“4”)
void pinMode();