CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2006
    Posts
    384

    "pascal" keyword in C++

    As part of a project to port 16 bit Borland C++ code to VC++, I came across the following statement in the BC++ code. Can someone please let me know what the keyword "pascal" means over here ?

    friend BitVec pascal operator ^ (……

    Is it safe to retain code by removing " pascal " in the VC++ version or is there a corresponding substitute ?
    What is "pascal" used for ?

  2. #2
    Join Date
    May 2005
    Location
    Oregon
    Posts
    3,725

    Re: "pascal" keyword in C++

    just read some good tutorial for calling convention.you are gointg to find everything.have a look for this also __stdcall
    Last edited by humptydumpty; April 17th, 2006 at 03:03 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured