diff options
author | Filippos Karapetis | 2010-10-17 22:56:11 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-10-17 22:56:11 +0000 |
commit | 7706f90c71b86ed13fb3cf941411382c2f57b4a9 (patch) | |
tree | bf82ad3cd204fac17bab2de6be4c142d79ebc20d /engines/sci | |
parent | 365cb758fb9d1751981884585aa84bf9cd14a53b (diff) | |
download | scummvm-rg350-7706f90c71b86ed13fb3cf941411382c2f57b4a9.tar.gz scummvm-rg350-7706f90c71b86ed13fb3cf941411382c2f57b4a9.tar.bz2 scummvm-rg350-7706f90c71b86ed13fb3cf941411382c2f57b4a9.zip |
SCI: Added comments for the unmapped SCI2/SCI2.1 kernel functions
svn-id: r53556
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/kernel_tables.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/engines/sci/engine/kernel_tables.h b/engines/sci/engine/kernel_tables.h index d2c95053d5..57704bc008 100644 --- a/engines/sci/engine/kernel_tables.h +++ b/engines/sci/engine/kernel_tables.h @@ -493,6 +493,24 @@ static SciKernelMapEntry s_kernelMap[] = { { MAP_CALL(UpdatePlane), SIG_EVERYWHERE, "o", NULL, NULL }, { MAP_CALL(UpdateScreenItem), SIG_EVERYWHERE, "o", NULL, NULL }, + // SCI2 unmapped functions - TODO! + // GetHighItemPri + // ShowStylePercent + // SetScroll + // AddMagnify // most probably similar to the SCI1.1 functions. We need a test case + // DeleteMagnify + // InvertRect + // EditText + // InputText + // DisposeTextBitmap + // VibrateMouse + // MakeSaveCatName + // MakeSaveFileName + // PalCycle + // ObjectIntersect + // TextWidth + // PointSize + // SCI2 empty functions // Purge is used by the memory manager in SSCI to ensure that X number of bytes (the so called "unmovable @@ -514,6 +532,34 @@ static SciKernelMapEntry s_kernelMap[] = { { MAP_CALL(WinDLL), SIG_EVERYWHERE, "(.*)", NULL, NULL }, { MAP_CALL(PrintDebug), SIG_EVERYWHERE, "ri", NULL, NULL }, + // SCI2.1 unmapped functions - TODO! + // SetLanguage + // FindSelector + // FindClass + // CelRect + // BaseLineSpan + // CelInfo + // Bitmap + // CelLink + // MovePlaneItems + // Font + // ScrollWindow + // AddLine + // DeleteLine + // UpdateLine + // AddPolygon + // DeletePolygon + // UpdatePolygon + // GetConfig + // Table + // LoadChunk + // SetPalStyleRange + // NewRoom + // Priority + // MorphOn + // SetHotRectangles + // DeletePic + // SCI2.1 empty functions // SetWindowsOption is used to set Windows specific options, like for example the title bar visibility of |