Ignore:
Timestamp:
Oct 11, 2001, 4:33:03 AM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shellord.c

    r6810 r7014  
    66 *           1998 Jürgen Schmied
    77 */
     8
     9/****************************************************************************
     10 * includes
     11 ****************************************************************************/
     12
     13#include <odin.h>
     14#include <os2sel.h>
     15#include <odinwrap.h>
     16
     17ODINDEBUGCHANNEL(SHELL32-SHELLORD)
     18
     19
    820#include <string.h>
    921#include <stdio.h>
     
    89101 *
    90102 */
    91 BOOL WINAPI GetFileNameFromBrowse(
    92         HWND hwndOwner,
    93         LPSTR lpstrFile,
    94         DWORD nMaxFile,
    95         LPCSTR lpstrInitialDir,
    96         LPCSTR lpstrDefExt,
    97         LPCSTR lpstrFilter,
    98         LPCSTR lpstrTitle)
     103ODINFUNCTION7(BOOL, GetFileNameFromBrowse,
     104              HWND, hwndOwner,
     105              LPSTR, lpstrFile,
     106              DWORD, nMaxFile,
     107              LPCSTR, lpstrInitialDir,
     108              LPCSTR, lpstrDefExt,
     109              LPCSTR, lpstrFilter,
     110              LPCSTR, lpstrTitle)
    99111{
    100112        FIXME("(%04x,%s,%ld,%s,%s,%s,%s):stub.\n",
     
    314326 */
    315327#define MEM_DEBUG 0
    316 void WINAPI SHFree(LPVOID x)
     328
     329ODINPROCEDURE1(SHFree,
     330               LPVOID, x)
    317331{
    318332#if MEM_DEBUG
     
    343357 *     exported by ordinal
    344358 */
    345 LPVOID WINAPI SHAlloc(DWORD len)
     359ODINFUNCTION1(LPVOID, SHAlloc,
     360              DWORD, len)
    346361{
    347362        LPBYTE ret;
Note: See TracChangeset for help on using the changeset viewer.