__Window

Suggestions and bug reports forum for Ams Plugin Maker
Post Reply
User avatar
Shrek
Registered User
Posts: 49
Joined: Mon Aug 12, 2013 10:10 pm

__Window

Post by Shrek »

Code: Select all

myfunction = function(hdl)
 if  __Window.IsWindow(hdl) then 
   return true
 else
   return false
 end
end;
Error: attempting to index global __Window (a nil value)

Seems __Window is not loading so the Windows functions don't work.
User avatar
Serkan
Developer
Developer
Posts: 214
Joined: Thu Jul 04, 2013 8:44 pm
Location: Windows.h
Contact:

Post by Serkan »

Hi
The __Window is a module/extension of APM plugin system , you should select that module from modules panel
APM makes a true binary compilation, it does not patch pre-compiled DLLs ,

this system allows you to include only the components you used , and unused ones will not be included to plugin
this means ,small file size because it will only contain the components you used

fast processing , because it does not load/register unused component's functions etc..

when you want to use a module ,you should check its checkbox from modules panel
apm_modules.jpg
User avatar
Shrek
Registered User
Posts: 49
Joined: Mon Aug 12, 2013 10:10 pm

Post by Shrek »

ahh, thanks.
Post Reply