Changeset 367


Ignore:
Timestamp:
Feb 5, 2010, 8:59:14 PM (16 years ago)
Author:
RBRi
Message:

format updates

Location:
trunk/hlpmgr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/hlpmgr/misc.c

    r360 r367  
    1313}
    1414
     15
    1516// e.g.   p = DBMstrtok2(EnvStr, "; \0");
    1617// probably just use strtok unless you really want to support dbcs
     
    2122}
    2223
     24
    2325INT APIENTRY NHMMscStrniCmp( PCH s1, PCH s2, INT len, PVOID thing )
    2426{
     
    2729  return strnicmp( s1, s2, len );
    2830}
     31
    2932
    3033// e.g.
     
    4346// typedef void* PINSTANCE;
    4447
     48
    4549// Attempt to see if we can get OpenChat running (not with help tho)
    4650BOOL APIENTRY NHM32SetHelpDatabase(PINSTANCE pInstance, PSZ DatabaseName, USHORT usObtimizeType)
     
    5458}
    5559
     60
    5661BOOL APIENTRY NHM32IOLoadAllTOC( PINSTANCE pInstance )
    5762{
     
    5964  return TRUE;
    6065}
     66
    6167
    6268BOOL APIENTRY NHM32IOFreeIOInfoList( PINSTANCE pInstance )
     
    6672}
    6773
     74
    6875BOOL APIENTRY NHM32IOFreeAllTOC( PINSTANCE pInstance )
    6976{
  • trunk/hlpmgr/sharedmemory.h

    r360 r367  
    3636                                    TSubAllocatedSharedMemory* pSharedMemory );
    3737
     38
    3839// suballocate space of the given size
    3940APIRET SubAllocate( TSubAllocatedSharedMemory* pSharedMemory,
     
    4142                    void** p );
    4243
     44
    4345// free the given space.
    4446void SubDeAllocate( TSubAllocatedSharedMemory* pSharedMemory,
    4547                    void** p );
    4648
     49
    4750void ReleaseSubAllocatedSharedMemory( TSubAllocatedSharedMemory* pSharedMemory );
    4851
    49 APIRET OpenOrCreateMutex( PSZ pszName,
    50                           PHMTX phmtx );
     52
     53APIRET OpenOrCreateMutex( PSZ pszName, PHMTX phmtx );
     54
    5155
    5256#endif
Note: See TracChangeset for help on using the changeset viewer.