Changeset 767 for trunk/src/kernel32/conprop.cpp
- Timestamp:
- Sep 1, 1999, 12:45:08 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conprop.cpp
r120 r767 1 /* $Id: conprop.cpp,v 1. 7 1999-06-19 10:54:40 sandervlExp $ */1 /* $Id: conprop.cpp,v 1.8 1999-08-31 22:44:33 phaller Exp $ */ 2 2 3 3 /* … … 1894 1894 1895 1895 1896 /***************************************************************************** 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 1921 * Funktion : save properties from registry 1922 * Parameter : PICONSOLEOPTIONS pConsoleOptions 1923 * Variablen : 1924 * Ergebnis : APIRET 1925 * Bemerkung : 1926 * 1927 * Autor : Patrick Haller [1998/06/13 23:20] 1928 *****************************************************************************/ 1929 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) 1951 { 1952 dprintf (("KERNEL32: Console:ConsolePropertyApply(%08xh) not implemented.\n", 1953 pConsoleOptions)); 1954 1955 return (NO_ERROR); 1956 } 1957 1958 1959 1896 1960 1897 1961
Note:
See TracChangeset
for help on using the changeset viewer.