source: 2.19_branch/Sibyl/RTL/PMWP.PAS@ 376

Last change on this file since 376 was 8, checked in by RBRi, 19 years ago

+ rest of sibyl stuff

  • Property svn:eol-style set to native
File size: 2.0 KB
Line 
1UNIT PmWP;
2
3INTERFACE
4
5USES Os2Def,PmWin;
6
7
8IMPORTS
9
10FUNCTION WinCreateObject(ClassName,Title,SetupString,Location:CSTRING;
11 ulFlags:ULONG):ULONG;
12 APIENTRY; 'PMWP' index 281;
13FUNCTION WinDeRegisterObjectClass(ClassName:CSTRING):BOOL;
14 APIENTRY; 'PMWP' index 201;
15FUNCTION WinDestroyObject(aobject:HOBJECT):BOOL;
16 APIENTRY; 'PMWP' index 251;
17FUNCTION WinEnumObjectClasses(VAR apObjClass:OBJCLASS;VAR pulSize:ULONG):BOOL;
18 APIENTRY; 'PMWP' index 205;
19FUNCTION WinFreeFileIcon(hptr:HPOINTER):BOOL;
20 APIENTRY; 'PMWP' index 216;
21FUNCTION WinLoadFileIcon(pszFileName:CSTRING;fPrivate:BOOL):HPOINTER;
22 APIENTRY; 'PMWP' index 209;
23FUNCTION WinQueryObject(pszObjectID:CSTRING):MRESULT;
24 APIENTRY; 'PMWP' index 252;
25FUNCTION WinRegisterObjectClass(pszClassName,pszModName:CSTRING):BOOL;
26 APIENTRY; 'PMWP' index 200;
27FUNCTION WinReplaceObjectClass(pszOldClassName,pszNewClassName:CSTRING;
28 fReplace:BOOL):BOOL;
29 APIENTRY; 'PMWP' index 219;
30FUNCTION WinRestoreWindowPos(pszAppName,pszKeyName:CSTRING;ahwnd:HWND):BOOL;
31 APIENTRY; 'PMWP' index 208;
32FUNCTION WinSetFileIcon(pszFileName:CSTRING;VAR pIcon:ICONINFO):BOOL;
33 APIENTRY; 'PMWP' index 210;
34FUNCTION WinSetObjectData(aobject:HOBJECT;pszSetupString:CSTRING):BOOL;
35 APIENTRY; 'PMWP' index 250;
36FUNCTION WinShutdownSystem(ahab:HAB;ahmq:HMQ):BOOL;
37 APIENTRY; 'PMWP' index 149;
38FUNCTION WinStoreWindowPos(pszAppName,pszKeyName:CSTRING;ahwnd:HWND):BOOL;
39 APIENTRY; 'PMWP' index 207;
40
41END;
42
43CONST
44 CO_FAILIFEXISTS = 0;
45 CO_REPLACEIFEXISTS = 1;
46 CO_UPDATEIFEXISTS = 2;
47
48IMPLEMENTATION
49
50BEGIN
51END.
Note: See TracBrowser for help on using the repository browser.