Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 245)

Ticket Resolution Summary Owner Reporter
#132 fixed Please add a high-mem safe wrapper for DosQueryAppType() bird guest
Description

DosQueryAppType?() is not listed in the high-mem supporting APIs and indeed it acts weird (returncode=87 and appType=0 whatever the real appType is) when being passed a char* as first argument that is located above 512MB. So it would be great, if it a SafeDosQueryAppType?() wrapper could be written and then add it to os2safe.h.

#133 fixed _SC_PAGESIZE missing in sysconf() bird cinc
Description

The sysconf() function doesn't implement the _SC_PAGESIZE (and _SC_PAGE_SIZE) parameters. This breaks GLIB 2.12.4 compilation (a workaround is easy, though).

#134 fixed emxomfld/wlink: The internalname and entryname of an IMPORTS statement is switched bird Yuri Dario
Description

When using IMPORTS in .def files, the parser reads the correct sequence, but emxomfld exchanges fields, so empty names are written to def file (happens when importing by ordinal).

Index: emxomfld.c
===================================================================
--- emxomfld.c	(revision 2893)
+++ emxomfld.c	(working copy)
@@ -1299,12 +1305,12 @@
         break;
 
       case _MD_IMPORTS:
-        fprintf (response_file, "IMPORT '%s' '%s'", stmt->import.entryname,
+        fprintf (response_file, "IMPORT '%s' '%s'", stmt->import.internalname,
                  stmt->import.modulename);
         if (stmt->import.flags & _MDEP_ORDINAL)
           fprintf (response_file, ".%d", stmt->import.ordinal);
         else if (stmt->import.internalname[0])
-          fprintf (response_file, ".'%s'", stmt->import.internalname);
+          fprintf (response_file, ".'%s'", stmt->import.entryname);
         fprintf (response_file, "\n");
         break;
 

Note: See TracQuery for help on using queries.