Page 1 of 1

passing parameters

Posted: Mon Jun 23, 2003 11:00 pm
by Stack
My kernel is coding in c++ and i have one func with this proptotype

      Print( char * a_szText );

This function call is made Like this :

      gs_pKern->Print( "Test" );

in the main entry point (the gs_pKern pointer kernel is valid ).
The function cannot print the string at screen .However a simple caracter in Print function like this :

   *VideoMemory++ = 'A';
   *VideoMemory++ = 0x47;

is good.

is a stack pb ???  

Thanks