Changeset 1476 for trunk/src/kernel32/conprop.cpp
- Timestamp:
- Oct 27, 1999, 2:38:48 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conprop.cpp
r767 r1476 1 /* $Id: conprop.cpp,v 1. 8 1999-08-31 22:44:33phaller Exp $ */1 /* $Id: conprop.cpp,v 1.9 1999-10-27 12:38:45 phaller Exp $ */ 2 2 3 3 /* … … 6 6 * 1998/03/06 Patrick Haller (haller@zebra.fh-weingarten.de) 7 7 * 8 * @(#) conprop.cpp 8 * @(#) conprop.cpp 1.0.0 1998/03/06 PH Start from scratch 9 9 */ 10 10 … … 32 32 #define INCL_VIO 33 33 #define INCL_AVIO 34 #include <os2wrap.h> 34 #include <os2wrap.h> //Odin32 OS/2 api wrappers 35 35 #include <builtin.h> 36 36 … … 1891 1891 1892 1892 1893 1894 1895 1896 1893 /***************************************************************************** 1897 * Name : APIRET EXPENTRY ConsolePropertyLoad 1898 * Funktion : load properties from registry 1899 * Parameter : PICONSOLEOPTIONS pConsoleOptions 1900 * Variablen : 1901 * Ergebnis : APIRET 1902 * Bemerkung : 1903 * 1904 * Autor : Patrick Haller [1998/06/13 23:20] 1905 *****************************************************************************/ 1906 1907 APIRET EXPENTRY ConsolePropertyLoad(PICONSOLEOPTIONS pConsoleOptions) 1908 { 1909 dprintf (("KERNEL32: Console:ConsolePropertyLoad(%08xh) not implemented.\n", 1910 pConsoleOptions)); 1911 1912 // HKEY_CURRENT_USER/SOFTWARE/ODIN/<process name>/<option name> 1913 1914 return (NO_ERROR); 1915 } 1916 1917 1918 1919 /***************************************************************************** 1920 * Name : APIRET EXPENTRY ConsolePropertySave 1894 * Name : APIRET EXPENTRY ConsolePropertyApply 1921 1895 * Funktion : save properties from registry 1922 1896 * Parameter : PICONSOLEOPTIONS pConsoleOptions … … 1928 1902 *****************************************************************************/ 1929 1903 1930 APIRET EXPENTRY ConsolePropertySave(PICONSOLEOPTIONS pConsoleOptions) 1931 { 1932 dprintf (("KERNEL32: Console:ConsolePropertySave(%08xh) not implemented.\n", 1933 pConsoleOptions)); 1934 1935 return (NO_ERROR); 1936 } 1937 1938 1939 /***************************************************************************** 1940 * Name : APIRET EXPENTRY ConsolePropertyApply 1941 * Funktion : apply properties in memory to the console window 1942 * Parameter : PICONSOLEOPTIONS pConsoleOptions 1943 * Variablen : 1944 * Ergebnis : APIRET 1945 * Bemerkung : 1946 * 1947 * Autor : Patrick Haller [1998/06/13 23:20] 1948 *****************************************************************************/ 1949 1950 APIRET EXPENTRY ConsolePropertyApply(PICONSOLEOPTIONS pConsoleOptions) 1904 DWORD ConsolePropertyApply(PICONSOLEOPTIONS pConsoleOptions) 1951 1905 { 1952 1906 dprintf (("KERNEL32: Console:ConsolePropertyApply(%08xh) not implemented.\n", … … 1955 1909 return (NO_ERROR); 1956 1910 } 1957 1958 1959 1960 1961 1911 1962 1912
Note:
See TracChangeset
for help on using the changeset viewer.