Ignore:
Timestamp:
Apr 4, 2001, 4:39:06 PM (24 years ago)
Author:
umoeller
Message:

Misc changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/dosh.h

    r53 r54  
    335335     *
    336336     ********************************************************************/
     337
     338    ULONG XWPENTRY doshMyPID(VOID);
     339    typedef ULONG XWPENTRY DOSHMYPID(VOID);
     340    typedef DOSHMYPID *PDOSHMYPID;
     341
     342    ULONG XWPENTRY doshMyTID(VOID);
     343    typedef ULONG XWPENTRY DOSHMYTID(VOID);
     344    typedef DOSHMYTID *PDOSHMYTID;
    337345
    338346    APIRET doshFindExecutable(const char *pcszCommand,
     
    678686    APIRET doshExecQueryBldLevel(PEXECUTABLE pExec);
    679687
    680     PFSYSRESOURCE doshExecQueryResources(PEXECUTABLE pExec,
    681                                          PULONG pcResources);
     688    APIRET doshExecQueryImportedModules(PEXECUTABLE pExec,
     689                                        PFSYSMODULE *ppaModules,
     690                                        PULONG pcModules);
     691
     692    APIRET doshExecFreeImportedModules(PFSYSMODULE paModules);
     693
     694    APIRET doshExecQueryExportedFunctions(PEXECUTABLE pExec,
     695                                          PFSYSFUNCTION *ppaFunctions,
     696                                          PULONG pcFunctions);
     697
     698    APIRET doshExecFreeExportedFunctions(PFSYSFUNCTION paFunctions);
     699
     700    APIRET doshExecQueryResources(PEXECUTABLE pExec,
     701                                  PFSYSRESOURCE *ppaResources,
     702                                  PULONG pcResources);
    682703
    683704    APIRET doshExecFreeResources(PFSYSRESOURCE paResources);
    684 
    685     PFSYSMODULE doshExecQueryImportedModules(PEXECUTABLE pExec,
    686                                              PULONG pcModules);
    687 
    688     APIRET doshExecFreeImportedModules(PFSYSMODULE paModules);
    689 
    690     PFSYSFUNCTION doshExecQueryExportedFunctions(PEXECUTABLE pExec,
    691                                                  PULONG pcFunctions);
    692 
    693     APIRET doshExecFreeExportedFunctions(PFSYSFUNCTION paFunctions);
    694705
    695706    /********************************************************************
     
    851862    #pragma pack()
    852863
    853     char* doshType2FSName(unsigned char bFSType);
     864    const char* doshType2FSName(unsigned char bFSType);
    854865
    855866    APIRET doshGetBootManager(USHORT   *pusDisk,
Note: See TracChangeset for help on using the changeset viewer.