Changeset 1879 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Nov 29, 1999, 9:43:02 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r1872 r1879 1 /* $Id: stubs.cpp,v 1. 8 1999-11-29 00:04:05 birdExp $ */1 /* $Id: stubs.cpp,v 1.9 1999-11-29 20:43:01 sandervl Exp $ */ 2 2 3 3 /* … … 1450 1450 1451 1451 /***************************************************************************** 1452 * Name : BOOL WIN32API EnumResourceLanguagesA1453 * Purpose : The EnumResourceLanguagesA function searches a module for each1454 * resource of the specified type and name and passes the language1455 * of each resource it locates to a defined callback function1456 * Parameters: HMODULE hModule resource-module handle1457 * LPCTSTR lpType pointer to resource type1458 * LPCTSTR lpName, pointer to resource name1459 * ENUMRESLANGPROC lpEnumFunc pointer to callback function1460 * LONG lParam application-defined parameter1461 * Variables :1462 * Result : If the function succeeds, the return value is nonzero.1463 * If the function fails, the return value is zero.1464 * Remark : The EnumResourceLanguages function continues to enumerate1465 * resource languages until the callback function returns FALSE1466 * or all resource languages have been enumerated.1467 * Status : UNTESTED STUB1468 *1469 * Author : Markus Montkowski [Tha, 1998/05/21 17:46]1470 *****************************************************************************/1471 1472 BOOL WIN32API EnumResourceLanguagesA(HMODULE hModule, LPCSTR lpType,1473 LPCSTR lpName,1474 ENUMRESLANGPROCA lpEnumFunc,1475 LONG lParam)1476 {1477 1478 dprintf(("KERNEL32:EnumResourceLanguagesA(%08x,%08x,%08x,%08x,%08x)\n not implemented",1479 hModule, lpType, lpName, lpEnumFunc, lParam1480 ));1481 1482 return (FALSE);1483 }1484 1485 /*****************************************************************************1486 * Name : BOOL WIN32API EnumResourceLanguagesW1487 * Purpose : The EnumResourceLanguagesW function searches a module for each1488 * resource of the specified type and name and passes the language1489 * of each resource it locates to a defined callback function1490 * Parameters: HMODULE hModule resource-module handle1491 * LPCTSTR lpType pointer to resource type1492 * LPCTSTR lpName, pointer to resource name1493 * ENUMRESLANGPROC lpEnumFunc pointer to callback function1494 * LONG lParam application-defined parameter1495 * Variables :1496 * Result : If the function succeeds, the return value is nonzero.1497 * If the function fails, the return value is zero.1498 * Remark : The EnumResourceLanguages function continues to enumerate1499 * resource languages until the callback function returns FALSE1500 * or all resource languages have been enumerated.1501 * Status : UNTESTED STUB1502 *1503 * Author : Markus Montkowski [Tha, 1998/05/21 17:46]1504 *****************************************************************************/1505 1506 BOOL WIN32API EnumResourceLanguagesW(HMODULE hModule, LPCWSTR lpType,1507 LPCWSTR lpName,1508 ENUMRESLANGPROCW lpEnumFunc,1509 LONG lParam)1510 {1511 1512 dprintf(("KERNEL32:EnumResourceLanguagesW(%08x,%08x,%08x,%08x,%08x)\n not implemented",1513 hModule, lpType, lpName, lpEnumFunc, lParam1514 ));1515 1516 return (FALSE);1517 }1518 1519 1520 1521 /*****************************************************************************1522 * Name : BOOL WIN32API EnumResourceTypesA1523 * Purpose : The EnumResourceTypesA function searches a module for resources1524 * and passes each resource type it finds to an application-defined1525 * callback function1526 * Parameters: HMODULE hModule, resource-module handle1527 * ENUMRESTYPEPROC lpEnumFunc pointer to callback function1528 * LONG lParam application-defined parameter1529 * Variables :1530 * Result : If the function succeeds, the return value is nonzero.1531 * If the function fails, the return value is zero1532 * Remark :1533 * Status : UNTESTED STUB1534 *1535 * Author : Markus Montkowski [Tha, 1998/05/21 17:46]1536 *****************************************************************************/1537 1538 BOOL WIN32API EnumResourceTypesA(HMODULE hModule,1539 ENUMRESTYPEPROCA lpEnumFunc, LONG lParam)1540 {1541 1542 dprintf(("KERNEL32: EnumResourceTypesA(%08x,%08x,%08x) not implemented\n",1543 hModule, lpEnumFunc, lParam1544 ));1545 1546 return (FALSE);1547 }1548 1549 /*****************************************************************************1550 * Name : BOOL WIN32API EnumResourceTypesW1551 * Purpose : The EnumResourceTypesW function searches a module for resources1552 * and passes each resource type it finds to an application-defined1553 * callback function1554 * Parameters: HMODULE hModule, resource-module handle1555 * ENUMRESTYPEPROC lpEnumFunc pointer to callback function1556 * LONG lParam application-defined parameter1557 * Variables :1558 * Result : If the function succeeds, the return value is nonzero.1559 * If the function fails, the return value is zero1560 * Remark :1561 * Status : UNTESTED STUB1562 *1563 * Author : Markus Montkowski [Tha, 1998/05/21 17:46]1564 *****************************************************************************/1565 1566 BOOL WIN32API EnumResourceTypesW(HMODULE hModule,1567 ENUMRESTYPEPROCW lpEnumFunc, LONG lParam)1568 {1569 1570 dprintf(("KERNEL32: EnumResourceTypesW(%08x,%08x,%08x) not implemented\n",1571 hModule, lpEnumFunc, lParam1572 ));1573 1574 return (FALSE);1575 }1576 1577 /*****************************************************************************1578 1452 * Name : BOOL WIN32API EnumSystemCodePagesA 1579 1453 * Purpose : The EnumSystemCodePagesA function enumerates the code pages that
Note:
See TracChangeset
for help on using the changeset viewer.