//#include "Global.h"
#include <Includes/Main_Global.h>
struct Remember *General_Memory;

void Problem(char *Error_String)
{
    
     
 MUI_Request(App->App, App->Main_Window, NULL, "Warning...", "_Continue", "%s",Error_String);
                                               
}





void Scan_List( struct WBArg *File_List, int NumberF )
{
       int x,Counter;
       
    Number = NumberF;

    Base_PTR = malloc(sizeof(struct Base_Entry)*(NumberF+1));// Allocate The Data_Base
// DEBUG printf("%dk Allocated At %p For Data Base Entrys\n",(sizeof(struct Base_Entry)*(NumberF+1))/1024,Base_PTR);
         
    for(Counter=0;Counter<NumberF;Counter++)
          {
             sprintf(Base_PTR[Counter].FileName,"%s\0",&File_List[Counter].wa_Name);
           
          }     
}   


